a = """brohelp,
brohelp,
brohelp,
brohelp.
"""
print(a)
Or three single quotes:
a = '''brohelp,
brohelp,
brohelp
brohelp.'''
print(a)
a = """brohelp,
brohelp,
brohelp,
brohelp.
"""
print(a)
Or three single quotes:
a = '''brohelp,
brohelp,
brohelp
brohelp.'''
print(a)