Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumPythonenumSingle-choice MCQ

How many members does iterating over this enum yield, and why?

from enum import Enum class Status(Enum): ACTIVE = 1 RUNNING = 1 DONE = 2 list(Status)