``` ''' triple quotes do the trick ''' ```
# general
b
Copy code
'''
triple
quotes
do the trick
'''
a
i often use
Copy code
my_string = """\
something
asdf
"""
in normal python code if you don't need the opening newline (single quotes work just as well, i prefer single quotes almost always but usually use double quotes when i use triple quotes)
to clarify i'm just referring to the initial backslash