Simple types / Strings

multilineString = """
    1. First line
    2. Second \
    line
        3. Third line
    4. Fourth "line"
    """

print(multilineString)
# prints:
#
#    1. First line
#    2. Second     line
#        3. Third line
#    4. Fourth "line"