Python · Structural Pattern Matching
What does this print? ``` d = {"a": 1, "b": 2, "c": 3} match d: case {"a": 1}: print("match") case _: print("no") ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
