python break string into multiple lines code example
Example 1: python change line in code
a = '1' + '2' + '3' + \
'4' + '5'
Example 2: 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."""