Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

/n python

"
" # copy it here
Comment

python /n

# copy this: 

# you can get  by ALT + 92
Comment

/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""")
Comment

PREVIOUS NEXT
Code Example
Python :: dataframe names pandas 
Python :: django form date picker 
Python :: self.assertequal python 
Python :: import from parent module package python 
Python :: if elif and else in python 
Python :: Restrict CPU time or CPU Usage using python code 
Python :: how to use variable from another function in python 
Python :: sorting in python 
Python :: Show column names and indexes dataframe python 
Python :: python function __name__ 
Python :: recall calculate confusion matrix .ravel() 
Python :: Python - How To Convert String to ASCII Value 
Python :: names of all methods in class introspect pythonm 
Python :: python aus liste tuple machen 
Python :: python selenium class 
Python :: Python program for getting url, hostname, port numbers 
Python :: how to plot quantity of each value of a feature in python 
Python :: analyser.polarity_scores get only compound 
Python :: pycountry get 
Python :: pandas month number to name 
Python :: #finding the differences between setA and SetB: 
Python :: how to convert multiple jupyter notebook into python script with single commanf 
Python :: treesitter python languages 
Python :: urlib3 json 
Python :: python [a]*b means [a,a,...b times] 
Python :: <function chr(i, /)> error in python 
Python :: python scale function 
Python :: controlliing a fill pattern in matplotlib 
Python :: comment arrĂȘter un jeu en appuyant sur une touche python 
Python :: spyder - identation 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =