class Animals(Enum){ Dog = 1 Cat = 2 Cow = 3 } Choose = input(\'Choose an animal\') print(Animals.Choose.value)
gives me an error perhaps because