python comments
# this is a single line comment, python ignores these
foo = "bar" # can be placed after code
"""
python doesnt have multiline comments
so multiline strings do the tricks
this works because python ignores string literals that arentassigned to a varaible
"""
# comments can be used as notes for the dude editing the script