What's the common practice for enums in Python? I.e. how are they replicated in Python?
public enum Materials
{
Shaded,
Shiny,
Transparent,
Matte
}
|
2
|
|||
|
closed as exact duplicate by Andrew Hare, Jarret Hardie, S.Lott, SilentGhost, Joan Venge Mar 31 at 21:40 |
|
|
|
||||||||||
|
|
|
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. |
||
|
|
|
|
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:
|
||
|
|
|
You could probably use an inheritance structure although the more I played with this the dirtier I felt.
|
||
|
|