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