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

Triple quoted comments - documentation

"""
Documentation of the module
"""

def some_funcion():
    "Documentation of the function"
    pass

text = """first row
second row
third row"""

"a string"

"""another
   longer
string with code:
print("this is not printed")
"""


print("Hello World")