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
I’ve dictionary which contains values like this {a:3,b:9,c:88,d:3} I want to calculate how many
Share
You should use
collections.Counter: