How to subtract two counter objects in Python

1 Answer

0 votes
from collections import Counter

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

print(cd)


'''
run:
 
Counter({'c': 6, 'a': 1, 'd': 1})

'''

 



answered Nov 6, 2018 by avibootz

Related questions

1 answer 169 views
1 answer 175 views
2 answers 135 views
1 answer 159 views
1 answer 543 views
...