Table of Contents
In this example, you will learn to create a long multiline string.
To understand this example, you should have the knowledge of the following Python programming topics:
1. Example 1: 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.
You can use '''(multiline string)''' or """(multiline string)""" to print a multiline string as shown above.
2. Example 2: Using parentheses and a single/double quotes
my_string = ("The only way to \n"
"learn to program is \n"
"by writing code.")
print(my_string)
Output
The only way to learn to program is by writing code.
If you use (" ") syntax, you need to specify the newlines explicitly using \n.
3. Example 3: Using \
my_string = "The only way to \n" \
"learn to program is \n" \
"by writing code."
print(my_string)
Output
The only way to learn to program is by writing code.
You can use \ as in the above example code to write a multiline string.
Related posts:
Python Dictionary values()
Python Program to Find Sum of Natural Numbers Using Recursion
Python Dictionary keys()
Python Program to Merge Two Dictionaries
Python List index()
Intelligent Projects Using Python - Santanu Pattanayak
Python Program Read a File Line by Line Into a List
Python Program to Find HCF or GCD
Python Program to Find the Factorial of a Number
Python reversed()
Python Program to Display Calendar
Python Anonymous / Lambda Function
Python Program to Trim Whitespace From a String
Python Program to Get the Class Name of an Instance
Python Dictionary update()
Python String upper()
Python str()
Python Dictionary get()
Python String splitlines()
Python Program to Get the Last Element of the List
Python Program to Print Output Without a Newline
Python Package
Python String ljust()
Python Set issubset()
Python id()
Python Program to Check the File Size
Python Generators
Python getattr()
Python Dictionary pop()
Python List sort()
Python Sets
Python Set symmetric_difference_update()