Python Program to Create a Long Multiline String Using Triple Quotes
# Create a Long Multiline String Using triple quotes in python my_string = '''Welcome to the newtum''' print(my_string)
Output:
Welcome
to the
newtum
# Create a Long Multiline String Using triple quotes in python my_string = '''Welcome to the newtum''' print(my_string)
Welcome
to the
newtum