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
Python3
print ( "GeeksForGeeks" )
print ( ' ' )
print ( " " )
print ( "Geeks For Geeks" )
|
Output:
GeeksForGeeks
Geeks For Geeks
Example 2: Printing spaces between two values while printing in a single print statement.
Python3
x = 1
y = 2
print ( "x:" ,x)
print ( "y:" ,y)
print (x, "+" ,y, "=" ,x + y)
|
Output:
x: 1
y: 2
1 + 2 = 3
Example 3: Print multiple spaces between two values.
Python3
print ( "Geeks" + " " + "For" + " " + "Geeks" )
print ( "Geeks" , "For" , "Geeks" )
print ( "Geeks" + " " * 3 + "For" + " " * 3 + "Geeks" )
print ( "Geeks" + " " * 5 + "For" + " " * 10 + "Geeks" )
|
Output:
Geeks For Geeks
Geeks For Geeks
Geeks For Geeks
Geeks For Geeks