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

1 Answer

0 votes
from collections import Counter

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

c += Counter()

print(c)


'''
run:
 
Counter({'c': 9, 'd': 5, 'a': 2})

'''

 



answered Nov 6, 2018 by avibootz

Related questions

1 answer 551 views
1 answer 174 views
1 answer 159 views
2 answers 228 views
1 answer 158 views
1 answer 179 views
1 answer 183 views
...