3 lines
112 B
Python
3 lines
112 B
Python
name = str(input('enter your name to check length : '))
|
|
print('{0} name length is {1}'.format(name, len(name)))
|