DEV Community

Bek Brace
Bek Brace

Posted on

Python \N How To Add A New Line in Python ? | The \n in Python |

The new line character in Python is: \n
It is made of two characters:
A backslash and the letter n.
If you see this character in a string, that means that the current line ends at that point and a new line starts right after it:

           >>>print ("Onions\nGarlic\nMeat")
           >>>Onions
           >>>Garlic
           >>>Meat   
Enter fullscreen mode Exit fullscreen mode

Oldest comments (0)