How to remove zero and negative counts from a counter in Python

1 Answer

0 votes
from collections import Counter

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

c += Counter() 
print(c)



'''
run:

Counter({'a': 5, 'b': 3, 'c': 2, 'e': 0, 'd': -3})
Counter({'a': 5, 'b': 3, 'c': 2})
 
'''

 



answered Jul 26, 2019 by avibootz
...