multi line string formatting in python

One way to make multi-line literal strings look good is to use a backslash to escape the newline, like this: output However, PEP-008 discourages backslash usage like that. It’s too fragile: if there’s a space between the backslash and the newline then the newline won’t get escaped, and the backslash will get printed. A more … Read more