Answers for "program to display word and character count of a given string 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 "program to display word and character count of a given string python"

Python Answers by Framework

Browse Popular Code Answers by Language