How can I do a line break (line continuation) in Python?
I have a long line of code that I want to break up among multiple lines. What do I use and what is the syntax?For example, adding a bunch of strings, e = 'a' + 'b' + 'c' + 'd'and have it in two lines like this: e = 'a' + 'b' + 'c' + 'd'