python syntax two line break code example
Example: line break in python code
a = '1' + '2' + '3' + \
'4' + '5'
#preferred by style guide
a = ('1' + '2' + '3' +
'4' + '5')
a = '1' + '2' + '3' + \
'4' + '5'
#preferred by style guide
a = ('1' + '2' + '3' +
'4' + '5')