multiline py str code example
Example 1: python multiline string
#you can start a multiline string with either ''' or """
'''This is a
multiline
string.'''
"""It can be used as a
multiline comment
too."""
Example 2: python multILINE string
"""You can
use both
double quotes
"""
'''And
singel
quotes
'''
# in a normal string this will be displayed as
# And\nsingel\nquotes\n