This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from collections import Counter | |
c1=Counter({'a':2,'b':1,'c':4,'d':3}) | |
c2=Counter({'a':3,'b':5,'e':7}) | |
#subtracts the count of respective elements | |
c1.subtract(c2) | |
#both input and output may be zero or negative. | |
print (c1)#Output:Counter({'c': 4, 'd': 3, 'a': -1, 'b': -4, 'e': -7}) | |
#dict update | |
#Update() method adds elements to the dictionary if key is not in that dictionary. If key is in the dictionary means, it will update the new value. | |
d1={'a':2,'b':1,'c':4,'d':3} | |
d2={'a':3,'b':5,'e':7} | |
d1.update(d2) | |
print (d1)#Output:{'a': 3, 'b': 5, 'c': 4, 'd': 3, 'e': 7} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment