Comments
# Single line comments start with a number symbol.
""" Multiline strings can be written
using three "s, and are often used
as documentation.
"""
# Comments are pieces of writing that don't get executed
print("I will be printed!")
# print("I'm commented out! I won't be printed!")