I have a very long query. I would like to split it in several lines in Python. A way to do it in JavaScript would be using several sentences and joining them with a +<
Use triple quotation marks. People often use these to create docstrings at the start of programs to explain their purpose and other information relevant to its creation. People also use these in functions to explain the purpose and application of functions. Example:
'''
Filename: practice.py
File creator: me
File purpose: explain triple quotes
'''
def example():
"""This prints a string that occupies multiple lines!!"""
print("""
This
is
a multi-line
string!
""")