5th day of python challenges 80-87
This commit is contained in:
5
challenges80-87/challenge-080.py
Normal file
5
challenges80-87/challenge-080.py
Normal file
@@ -0,0 +1,5 @@
|
||||
first_name = str(input('Enter your first name : '))
|
||||
print('Your first name length is {0}'.format(len(first_name)))
|
||||
sure_name = str(input('Enter your sure name : '))
|
||||
print('Your surname length is {0}'.format(len(sure_name)))
|
||||
print('{0} {1} name length is {2}'.format(first_name, sure_name, len(first_name+' '+sure_name)))
|
Reference in New Issue
Block a user