how to have print statement on more than 1 line python code example
Example: python continue to a new line
a = "This" + " is" + " a" + \
" multi-line" + " statement"
a = "This" + " is" + " a" + \
" multi-line" + " statement"