Python · Structural Pattern Matching
What does this print? ``` from enum import Enum class C(Enum): RED = 1 BLUE = 2 match C.BLUE: case C.RED: print("red") case C.BLUE: print("blue") ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
