I've dictionary which contains values like this {a:3,b:9,c:88,d:3} I want to calculate how many times particular number appears in above dictionary. For example in above dictionary 3 appears twice in dictionary Please help to write python script
feedback
|
|
You should use
| |||||||||
feedback
|
|
I'd use a defaultdict to do this (basically the more general version of the Counter). This has been in since 2.4.
| |||||
feedback
|