Python
Python vs C++: What's the Difference?
What is C++? C++ is widely used in general-purpose programming languages. The language allows you...
Python print() built-in function is used to print the given content inside the command prompt. The default functionality of Python print is that it adds a newline character at the end.
In this Python tutorial, you will learn:
The print() function is used to display the content in the command prompt or console. Here is an example that shows the working of Python print without newline function.
print("Hello World")
print("Welcome to gtupapers Tutorials")
OutputHello World Welcome to gtupapers Tutorials
In the given output, you can see that the strings that we have given in print() are displayed on separate lines. The string "Hello World " is printed first, and "Welcome to gtupapers Tutorials" is printed on the next line.
From Python 3+, there is an additional parameter introduced for print() called end=. This parameter takes care of removing the newline that is added by default in print().
In the Python 3 print without newline example below, we want the strings to print on same line in Python. To get that working just add end="" inside print() as shown in the example below:
print("Hello World ", end="")
print("Welcome to gtupapers Tutorials")
Output:
Hello World Welcome to gtupapers Tutorials
We are getting the output that we wanted, but there is no space between the strings. The string Hello World and Welcome to gtupapers Tutorials are printed together without any space.
In order to add space or special character or even string to be printed, the same can be given to the end="" argument, as shown in the example below.
print("Hello World ", end=" ")
print("Welcome to gtupapers Tutorials")
So I here we have added one space to the end argument, for example (end=" "). Now, if you see the output, you should see a space between Hello World and Welcome to gtupapers Tutorials.
Output:
Hello World Welcome to gtupapers Tutorials
It's not only space that you can give to the end argument, but you can also specify a string you wish to print between the given strings. So here is an example of it
print("Hello World ", end="It's a nice day! ")
print("Welcome to gtupapers Tutorials")
Output:
Hello, World It's a nice day! Welcome to gtupapers Tutorials
To get the strings to print without a newline, in python2.x you will have to add a comma (,) at the end of the print statement as shown below:
print "Hello World ", print "Welcome to gtupapers Tutorials."
Output:
Hello World Welcome to gtupapers Tutorials
Yet another method that you can use to print without newline in Python is the built-in module called sys.
Here is a working example that shows how to make use of the sys module to print without newline Python strings.
To work with the sys module, first, import the module sys using the import keyword. Next, make use of the stdout.write() method available inside the sys module, to print your strings.
import sys
sys.stdout.write("Hello World ")
sys.stdout.write("Welcome to gtupapers Tutorials")
Output:
Hello World Welcome to gtupapers Tutorials
Consider a list of items for example: mylist = ["PHP", JAVA", "C++", "C", "PHYTHON"] and you want to print the values inside the list using for-loop. So here you can make use of print() to display the values inside the list as shown in the example below:
mylist = ["PHP", "JAVA", "C++", "C", "PHYTHON"] for i in mylist: print(i)
Output:
PHP JAVA C++ C PHYTHON
The output shows the list items, each printed one after another, on a new line. What if you want all the items on the list in the same line? For that, make use of end argument inside print() that will remove new line in Python and print all items of the list in the same line.
mylist = ["PHP", "JAVA", "C++", "C", "PYTHON"] for i in mylist: print(i, end=" ")
Output:
PHP JAVA C++ C PHYTHON
The example of Python print without newline will make use of print() function to print stars(*) on the same line using for-loop.
for i in range(0, 20):
print('*', end="")
Output:
********************
What is C++? C++ is widely used in general-purpose programming languages. The language allows you...
What is a Dictionary in Python? A Dictionary in Python is the unordered and changeable collection of...
What is Python Sleep? Python sleep() is a function used to delay the execution of code for the...
What are Logical Operators in Python? Logical Operators in Python are used to perform logical...
What is Python Main Function? Python main function is a starting point of any program. When the...
What are the modules in Python? A module is a file with python code. The code can be in the form...