What is the result of this functional-API enum creation?from enum import Enum Weekday = Enum('Weekday', 'MON TUE WED') print(Weekday.TUE.value)