MSNCodeSNIPPETS← msncode.dev
snippets/python

Filter List with Comprehension

Filter a list using a conditional list comprehension

pythonpythonlistfilter
PYTHON
even = [x for x in nums if x % 2 == 0]

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

Read File Line by Line

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

Sort List of Dicts by Key

Sort a list of dictionaries by a specific key