HOW TO PRINT NEXT LINE IN PYTHON
In this article, we will go through various ways to print next line in python. If you are looking for “how to print in next line in python”, this article will help you for the same.
You can use the newline character \n
to print next line
print("Python\npoint")
Output:
Python point
The print() function itself will print next line.
print("Hello") print() print("World")
Output:
Hello World
Subscribe
Login
Please login to comment
0 Discussion