How do you write a Python statement that can expand over multiple lines? code example
Example: python how to write code over multiple lines
a = '1' \
+ '2' \
+ '3' \
- '4'
a = '1' \
+ '2' \
+ '3' \
- '4'