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)