python count letters code example
Example 1: pyton count number of character in a word
# Count number of characters in a string (word)
a = "some string"
print len(a) # 11
Example 2: count characters in string python
>>> sentence = 'Mary had a little lamb'
>>> sentence.count('a')
4