print("line one
line two") # the
in python is used to create new lines in a string
print('
', end='')
print("First Line
" "Second Line")
#code
print('characters after the Python new line character
will be printed on a new line')
#output
characters after the Python new line character
will be printed on a new line