How to use enums in Python classes?


There is a module name "enum" in python with the hep of which enum is used in python.

#import enum
import enum
# use enum in class
class Car(enum.Enum):
   suzuki = 1
   Hyundai = 2
   Dezire = 3
print ("All the enum values are : ")
for c in (Car):
   print(c)

Updated on: 23-Jun-2020

167 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements