how to break a line and continue the code on the next python code example
Example: python continue to a new line
a = "This" + " is" + " a" + \
" multi-line" + " statement"
a = "This" + " is" + " a" + \
" multi-line" + " statement"