/n di Python

# \n is basically newline so it will create newline

# Output
"""
1: Choice
2: Quit
"""
# \n
print("1: Choice\n2: Quit")
#--------------------------------------------------------------------------
# This will also print the same
print("1: Choice")
print("2: Quit")

# You can also write like this which will print the same
print("""1: Choice
2: Quit""")
Kaung Pyae Htet