Python Program to Create a Long Multiline String (Using triple quotes)
my_string = '''The only way to
learn to program is
by writing code.'''
print(my_string)
Output
The only way to learn to program is by writing code.
