Python · The collections Module
What does this print? ``` from collections import ChainMap a = {"x": 1} b = {"x": 2, "y": 9} cm = ChainMap(a, b) print(cm["x"], cm["y"]) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
