✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
from enum import Enumclass RideType(Enum):
ROLLERCOASTER = "Rollercoaster"
WATERFALL = "Waterfall"print(RideType.ROLLERCOASTER.value)