How to print without newline in Python?

Generally, people switching from C/C++ to Python wonder how to print two or more variables or statements without going into a new line in python. Since the python print() function by default ends with a newline. Python has a predefined format if you use print(a_variable) then it will go to the next line automatically. 
 

For example: 

 

print("Programingsha")
print("Programmigshark")

Will result in this: 

 

programmingsha
Programmingshark

But sometimes it may happen that we don’t want to go to the next line but want to print on the same line. So what we can do? 

For Example:

 

Input : print("programming") print("programmingshark")
Output : programming  programmingshark

Input : a = [1, 2, 3, 4]
Output : 1 2 3 4 

The solution discussed here is totally dependent on the python version you are using. 
 

Print without newline in Python 2.x

 

 

# Python 2 code for printing
# on the same line printing
# programming and programmingshark
# in the same line

print("programming"),
print("programmingshark")

# array
a = [1, 2, 3, 4]

# printing a element in same
# line
for i in range(4):
	print(a[i]),

Output: 

programming programmingshark
1 2 3 4

Print without newline in Python 3.x without using for loop

 

# Print without newline in Python 3.x without using for loop
 
l=[1,2,3,4,5,6]
 
# using * symbol prints the list
# elements in a single line
print(*l)
 
#This code is contributed by anuragsingh1022

Output:

1 2 3 4 5 6

Submit Your Programming Assignment Details