Welcome to the World of Online Learning:
Hello Friends “This blog helps you to learn Python programming concepts. You can learn Python language at your own speed and time. One can learn concepts of Python language by practicing various programs given on various pages of this blog. Enjoy the power of Self-learning using the Internet.”
Write a Python Program to Print Output Without a Newline
PROGRAM: Python Program to Print Output Without a Newline
/* Python Program to Print Output Without a Newline */
Using end keyword
# print each statement on a new line
print(“Python”)
print(“is easy to learn.”)
# new line
print()
# print both the statements on a single line
print(“Python”, end=” “)
print(“is easy to learn.”)
OUTPUT:-
Python is easy to learn. Python is easy to learn.