How to print spaces in Python3?

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




# Python program to print spaces
  
# No spaces
print("w3wiki")
  
# To print the blank lines
print(' ')
  
# Also print the blanks
print(" ")
  
# To print the spaces in sentence
print("Beginner  For    Beginner")


Output:

w3wiki
 
 
Beginner  For    Beginner


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

Python3




# Python program to print spaces
x = 1
y = 2
  
# use of "," symbol
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




# Python program to print spaces
  
# To print the single spaces in sentence
print("Beginner"+" "+"For"+" "+"Beginner")
print("Beginner","For","Beginner")
  
# to print spaces by given times
print("Beginner"+" "*3+"For"+" "*3+"Beginner")
print("Beginner"+" "*5+"For"+" "*10+"Beginner")


Output:

Beginner For Beginner
Beginner For Beginner
Beginner   For   Beginner
Beginner     For          Beginner