python break line code example
Example 1: python change line in code
a = '1' + '2' + '3' + \
'4' + '5'
Example 2: line break in python code
a = '1' + '2' + '3' + \
'4' + '5'
#preferred by style guide
a = ('1' + '2' + '3' +
'4' + '5')
Example 3: break line in string python
myString = '1X2X3X'
print (myString.replace ('X', 'X\n'))
Example 4: python how to write code over multiple lines
a = '1' \
+ '2' \
+ '3' \
- '4'
Example 5: python continue to a new line
a = "This" + " is" + " a" + \
" multi-line" + " statement"