Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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'

share|improve this question

6 Answers

up vote 131 down vote accepted

str.count(sub[, start[, end]])

Return the number of non-overlapping occurrences of substring sub in the range [start, end]. Optional arguments start and end are interpreted as in slice notation.

>>> str='Mary had a little lamb'
>>> str.count('a')
4
share|improve this answer
Cool. Elegant. But IMHO, you might want to use a var name that isn't a builtin, to avoid confusion. – hobs May 9 at 23:27
>>> 'Mary had a little lamb'.count ('a')
4
share|improve this answer

As other answers said, using the string method count() is probably the simplest, but if you're doing this frequently, check out collections.Counter:

from collections import Counter
str = "Mary had a little lamb"
counter = Counter(str)
print counter['a']
share|improve this answer
myString.count('a');

more info here

share|improve this answer

Regular expressions maybe?

import re
my_string = "Mary had a little lamb"
len(re.findall("a", my_string))
share|improve this answer
3  
A fine idea, but overkill in this case. The string method 'count' does the same thing with the added bonus of being immediately obvious about what it is doing. – nilamo Jul 20 '09 at 20:18
5  
why negative rate, maybe someone needs this kind of code for something similar. my vote up – kiltek Mar 31 '12 at 10:18
agree with kiltek -- this is just the more general case... – C. Reed Apr 1 '12 at 14:28
"aabc".count("a")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.