"
" # copy it here
# copy this:
# you can get by ALT + 92
#
is basically newline so it will create newline
# Output
"""
1: Choice
2: Quit
"""
#
print("1: Choice
2: 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""")