What's the common practice for enums in Python? I.e. how are they replicated in Python?
public enum Materials
{
Shaded,
Shiny,
Transparent,
Matte
}
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
|||||||||||||||||
|
|
I've seen this pattern several times:
You can also just use class members, though you'll have to supply your own numbering:
If you're looking for something more robust (sparse values, enum-specific exception, etc.), try this recipe. |
|||
|
|
|
You could probably use an inheritance structure although the more I played with this the dirtier I felt.
|
|||
|
|
|
I have no idea why Enums are not support natively by Python. The best way I've found to emulate them is by overridding _ str _ and _ eq _ so you can compare them and when you use print() you get the string instead of the numerical value.
Usage:
|
|||||
|