Python · The collections Module
What does this print? ``` from collections import Counter a = Counter(x=3, y=1) b = Counter(x=1, y=2) print(a - b) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
