Files
python-by-example-150-chall…/challenges1-11/challenage-001.py

4 lines
88 B
Python
Raw Normal View History

2019-07-17 09:56:46 +03:00
print('enter your name')
name = input("name : ")
print('your name is {0}'.format(name))