Answers for "pthon count the number of words in a string"

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 "pthon count the number of words in a string"

Python Answers by Framework

Browse Popular Code Answers by Language