如何在Python类中使用枚举?

在python中有一个模块名称“ enum”,其hep在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)