Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

/n in python

# 
 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""")
 
PREVIOUS NEXT
Tagged: #python
ADD COMMENT
Topic
Name
1+3 =