how to count the letters in a 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