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

What is the result of this functional-API enum creation?

from enum import Enum Weekday = Enum('Weekday', 'MON TUE WED') print(Weekday.TUE.value)