MSNCodeSNIPPETS← msncode.dev
snippets/python

Zip Two Lists Together

Iterate over two lists in parallel

pythonpythonziploop
PYTHON
for name, age in zip(names, ages):
    print(name, age)

More python snippets

Dictionary with Default Value

Auto-create keys with a default value

Enumerate with Index

Loop through a list with both index and value

Filter List with Comprehension

Filter a list using a conditional list comprehension

Read File Line by Line

Read a file line by line without loading it all into memory