Python Program to Represent enum

To understand this example, you should have the knowledge of the following Python programming topics:


Using enum module

Output

Day.MONDAY
MONDAY
1

Here, we have class Day with the object Enum as its argument. name and value are the attributes of Enum which give the name and value of the member MONDAY respectively.

You can refer to the official documentation of enum for more information.