Python Programming - Console Input/Output - Discussion

Discussion Forum : Console Input/Output - General Questions (Q.No. 11)
11.
Which function is used to print without a newline?
print_no_newline()
print(newline=False)
print("\n", end="")
print_n()
Answer: Option
Explanation:
To print without a newline in Python, you can use print("\n", end="").
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.