python-by-example-150-chall.../challenges1-11/challenage-001.py
2019-07-17 09:56:46 +03:00

4 lines
88 B
Python

print('enter your name')
name = input("name : ")
print('your name is {0}'.format(name))