What's the simplest way to count the number of occurrences of a character in a string?
e.g. count the number of times 'a' appears in 'Mary had a little lamb'
|
|
|
||||
|
|
As other answers said, using the string method count() is probably the simplest, but if you're doing this frequently, check out collections.Counter:
|
|||
|
|
|
Regular expressions maybe?
|
|||||||||||
|