Below are some ways to specify a new line on Python:-
The new line character is \n. It is used inside a string.
Example:
print 'First line \n Second line'
where \n is the newline character.
This would yield the result:
First line Second line
To know more about this you can have a look at the following video tutorial:-