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: 2020-06-23T14:47:21+05:30

252 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements