Answers for "pyton count number of character in a word"

1

pyton count number of character in a word

# Count number of characters in a string (word)
a = "some string"
print len(a)       # 11
Posted by: Guest on September-20-2020

Code answers related to "pyton count number of character in a word"

Python Answers by Framework

Browse Popular Code Answers by Language