Python Basics2
Python Basics2
Syntax:
print(object(s))
Table of Contents:
Example: 1
To print the Welcome to Guru99, use the Python print statement as follows:
https://www.guru99.com/print-python-examples.html 1/8
12/13/24, 11:28 PM Python Print() Statement: How to Print with Examples
Run
Output:
Welcome to Guru99
Run
Example 2:
If you want to print the name of five countries, you can write:
https://www.guru99.com/print-python-examples.html 2/8
12/13/24, 11:28 PM Python Print() Statement: How to Print with Examples
1 print("USA")
2 print("Canada")
3 print("Germany")
4 print("France")
5 print("Japan")
Run
Output:
USA
Canada
Germany
France
Japan
RELATED ARTICLES
→ Multithreading in Python with Example: Learn GIL in Python
→ Go Vs. Python: What’s the Difference?
→ How to Remove Duplicates from a List in Python
→ Palindrome Program in Python
https://www.guru99.com/print-python-examples.html 3/8
12/13/24, 11:28 PM Python Print() Statement: How to Print with Examples
Sometimes you need to print one blank line in your Python program. Following is
an example to perform this task using Python print format.
Example:
Let us print 8 blank lines. You can type:
1 print (8 * "\n")
Run
or:
1 print ("\n\n\n\n\n\n\n\n\n")
https://www.guru99.com/print-python-examples.html 4/8
12/13/24, 11:28 PM Python Print() Statement: How to Print with Examples
Run
Run
Output
Welcome to Guru99
Welcome to Guru99
By default, print function in Python ends with a newline. This function comes with a
parameter called ‘end.’ The default value of this parameter is ‘\n,’ i.e., the new line
character. You can end a print statement with any character or string using this
parameter. This is available in only in Python 3+
Example 1:
Output:
Welcome to Guru99!
Example 2:
# ends the output with ‘@.’
Output:
Python@
Top
Top Python PyQt5 Tutorial
Tutorial
Interview with Examples:
Examples: Multithreading in
Questions and… Design…
Design… Python with…
https://www.guru99.com/print-python-examples.html 6/8
12/13/24, 11:28 PM Python Print() Statement: How to Print with Examples
Import module in
Python
Python with
Examples
Examples
Do you think
AI is future of
Work?
Yes No
About
About Us
Advertise with Us
Contact Us
https://www.guru99.com/print-python-examples.html 7/8
12/13/24, 11:28 PM Python Print() Statement: How to Print with Examples
Career Suggestion
SAP Career Suggestion Tool
Software Testing as a Career
Xero
RemotePC
QuickBooks
Interesting
eBook
Blog
Quiz
SAP eBook
Privacy Manager
https://www.guru99.com/print-python-examples.html 8/8