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

6 lines
174 B
Python

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))