Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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!")

Contributors: