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

Bek Brace - Sep 9 '20 - - Dev Community

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
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player