Skip to content

Instantly share code, notes, and snippets.

@pulkitpahwa
Created October 5, 2020 08:23
Show Gist options
  • Save pulkitpahwa/ab15d6a1487e230d27c8c4e946e6c9f5 to your computer and use it in GitHub Desktop.
Save pulkitpahwa/ab15d6a1487e230d27c8c4e946e6c9f5 to your computer and use it in GitHub Desktop.
More examples of python collections
# 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