Python Program to Print Output Without a Newline

To understand this example, you should have the knowledge of the following Python programming topics:


Using end keyword

Output

Python
is easy to learn.

Python is easy to learn.

Using the end keyword, you can append a string at the end of the print text. In the above example, we have passed a space with end, which adds a space at the end of the line and concatenates the content of the next print statement.