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

6 lines
174 B
Python
Raw Normal View History

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