I'm mainly a C# developer, but I'm currently working on a project in Python.
What's the best way to implement the equivalent of an enum in Python?
|
20
|
|
|
|
|
|
Python doesn't have an equivalent but you can implement your own. Myself, I like keeping it simple (I've seen some horribly complex examples on the net), something like this ...
|
||||||||||||
|
|
|
The typesafe enum pattern which was used in Java pre-JDK 5 has a number of advantages. Much like in Alexandru's answer, you create a class and class level fields are the enum values; however, the enum values are instances of the class rather than small integers. This has the advantage that your enum values don't inadvertently compare equal to small integers, you can control how they're printed, add arbitrary methods if that's useful and make assertions using isinstance:
|
|||
|
|
|
|
Python doesn't have a built-in equivalent to However, in situations where an
(One disadvantage compared to using a class is that you lose the benefit of autocomplete) |
||||||
|
|
|
If you need the numeric values, here's the quickest way:
|
||
|
|
|
|
Use it like this:
if you just want unique symbols and don't care about the values, replace this line:
with this:
|
||
|
|
|
|
What exactly do you want to use an enum for? Is there a more Pythonic way of doing it? |
||
|
|
|
|
What I use:
How to use:
So this gives you integer constants like state.PUBLISHED and the two-tuples to use as choices in Django models. |
||
|
|
|
|
Hi! Hmmm... I suppose the closest thing to an enum would be a dictionary, defined either like this:
or
Then, you can use the symbolic name for the constants like this:
There are other options, like a list of tuples, or a tuple of tuples, but the dictionary is the only one that provides you with a "symbolic" (constant string) way to access the value. Edit: I like Alexandru's answer too! |
||
|
|
|
|
You can take a look at the traits package. This gives you something like type safety and many other useful features. But it really depends on what you want to use such an enum for. |
|||
|
|
|
|
davidg recommends using dicts. I'd go one step further and use sets:
Now you can test whether a value matches one of the values in the set like this:
like dF, though, I usually just use string constants in place of enums. |
||
|
|
|
|
Alexandru's suggestion of using class constants for enums works quite well. I also like to add a dictionary for each set of constants to lookup a human-readable string representation. This serves two purposes: a) it provides a simple way to pretty-print your enum and b) the dictionary logically groups the constants so that you can test for membership.
|
||
|
|
|
|
The best solution for you would depend on what you require from your fake Simple enum: If you need the
Using a
In addition to the above, if you also require that the items belong to a container of some sort, then embed them in a class:
To use the enum item, you would now need to use the container name and the item name:
Complex enum: For long lists of enum or more complicated uses of enum, these solutions will not suffice. You could look to the recipe by Will Ware for Simulating Enumerations in Python published in the Python Cookbook. An online version of that is available here. More info: PEP 354: Enumerations in Python has the interesting details of a proposal for enum in Python and why it was rejected. |
|||
|
|
|
Its funny, I just had a need for this the other day and i couldnt find an implementation worth using... so i wrote my own
take it or leave it, it did what i needed it to do :) use it like:
|
|||
|
|
|
|
What about :
I used that for Django model choices, it looks very pythonic. It is not really a Enum, but do the job. |
||
|
|
|
|
Here's yet another way:
Used like so:
|
||
|
|