python-by-example-150-chall.../challenges20-26/challenge-021.py

5 lines
202 B
Python
Raw Normal View History

2019-07-17 14:56:46 +08:00
first_name = str(input('Enter your first name : '))
surname = str(input('Enter your surname : '))
compact = first_name + ' ' + surname
print('{0} your name length is {1}'.format(compact, len(compact)))