How to Print a simple String in Python? How to print blank lines Print end command

Python print() function

The print() function in Python is used to print a specified message on the screen. The print command in Python prints strings or objects which are converted to a string while printing on a screen. Syntax:

How to print blank lines

Sometimes you need to print one blank line in your Python program. Following is an example to perform this task using Python print format. Here is how to print statement in Python 3:

Example: 1

To print the Welcome to Guru99, use the Python print statement as follows:

Welcome to Guru99 In Python 2, same example will look like

Example 2:

If you want to print the name of five countries, you can write:

Example:

Let us print 8 blank lines. You can type: or:

Output

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@