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

3 lines
112 B
Python
Raw Normal View History

2019-07-17 14:56:46 +08:00
name = str(input('enter your name to check length : '))
print('{0} name length is {1}'.format(name, len(name)))