Created
October 5, 2020 08:23
-
-
Save pulkitpahwa/ab15d6a1487e230d27c8c4e946e6c9f5 to your computer and use it in GitHub Desktop.
More examples of python collections
This file contains hidden or 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
# continued from https://gist.github.com/pulkitpahwa/d70d6855b5fba23f5b439b1cae556ad1 | |
a = Counter({"tata": ["tiago", "nano"]}) | |
b = Counter({"tata": ["nexon"]}) | |
c = a + b | |
print(c) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment