1#You can use \n to create a carriage return.
2print("first line\nSecond line")
3
4#Or use the following syntax to replace the commas with \n
5#to create carriage returns for each line.
6
7print("first line", "second line", sep="\n")
8
9#Or use triple quotation marks at the start and end of
10#the text and format the text how you want it to appear.
11
12print("""
13Line1
14Line2
15""")