enumerable python code example
Example 1: enumerate python
for index,subj in enumerate(subjects):
print(index,subj)
0 Statistics
1 Artificial intelligence
2 Biology
3 Commerce
4 Science
5 Maths
Example 2: enum in python
import enum
class Days(enum.Enum):
Sun = 1
Mon = 2
Tue = 3
print ("The enum member as a string is : ",end="")
print (Days.Mon)
print ("he enum member as a repr is : ",end="")
print (repr(Days.Sun))
print ("The type of enum member is : ",end ="")
print (type(Days.Mon))
print ("The name of enum member is : ",end ="")
print (Days.Tue.name)