how to count number of letters in string python code example
Example: count characters in string python
>>> sentence = 'Mary had a little lamb'
>>> sentence.count('a')
4
>>> sentence = 'Mary had a little lamb'
>>> sentence.count('a')
4