python-by-example-150-chall.../challenges20-26/challenge-020.py
2019-07-17 09:56:46 +03:00

3 lines
112 B
Python

name = str(input('enter your name to check length : '))
print('{0} name length is {1}'.format(name, len(name)))