Answers for "how to find the count of the word in a string in python"

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 "how to find the count of the word in a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language