How to sum counter object values in Python

1 Answer

0 votes
from collections import Counter

c = Counter(a=2, b=0, c=9, d=5, e=-3)

s = sum(c.values())

print(s)


'''
run:
 
13

'''

 



answered Nov 6, 2018 by avibootz

Related questions

1 answer 185 views
2 answers 229 views
1 answer 159 views
1 answer 180 views
1 answer 184 views
1 answer 160 views
...