Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

cheat sheet python

>>> print('What is your name?')   # ask for their name
>>> myName = input()
>>> print('It is good to meet you, {}'.format(myName))
What is your name?
Al
It is good to meet you, Al
Source by www.pythoncheatsheet.org #
 
PREVIOUS NEXT
Tagged: #cheat #sheet #python
ADD COMMENT
Topic
Name
7+6 =