Login
Remember
Register
Ask a Question
Use of Enums in Python
0
votes
asked
May 24, 2020
in
Python
by
SakshiSharma
Use of Enums in Python
#python-enums
#enums-python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 24, 2020
by
Robindeniel
class Training:
Madanswer, Online, Madanswer = range(3)
print(MyName.Madanswer)
print(MyName.Online)
print(MyName.Madanswer)
Output:
1
2
3
2
1
2
...