VOOZH about

URL: https://www.geeksforgeeks.org/python/how-to-print-spaces-in-python3/

⇱ How to print spaces in Python3? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to print spaces in Python3?

Last Updated : 1 Aug, 2020

In this article, we will learn about how to print space or multiple spaces in the Python programming language. Spacing in Python language is quite simple than other programming language. In C languages, to print 10 spaces a loop is used while in python no loop is used to print number of spaces.

Following are the example of the print spaces:

Example 1: A simple way to print spaces

Output:

GeeksForGeeks
 
 
Geeks For Geeks


Example 2: Printing spaces between two values while printing in a single print statement.

Output:

x: 1
y: 2
1 + 2 = 3


Example 3: Print multiple spaces between two values.

Output:

Geeks For Geeks
Geeks For Geeks
Geeks For Geeks
Geeks For Geeks


Comment
Article Tags: