Python · Structural Pattern Matching
What does this print? ``` for v in (5, -3, 0): match v: case n if n > 0: print("pos") case n if n < 0: print("neg") case _: print("zero") ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
