Triple Quotes for a Multiline Python String
You can use a triple quote or triple double-quote to create a multiline string in Python:
multiline = '''
a string
with many lines
in python.
'''
multiline = """
You can use double-quotes
for a multiline string too,
and "quotes" within the 'string'.
"""
Read more here: https://blog.modernlearner.org/multiline-strings-in-python/