print how many letters python code example
Example 1: python return number of characters in string
# Example usage:
your_string = "Example usage"
len(your_string)
--> 13
Example 2: pyton count number of character in a word
# Count number of characters in a string (word)
a = "some string"
print len(a) # 11