I'm mainly a C# developer, but I'm currently working on a project in Python.
How can I represent the equivalent of an enum in Python?
|
Enums have been added to Python 3.4 as described in PEP 435. In earlier versions, one way of accomplishing enums is:
which is used like so:
You can also easily support automatic enumeration with something like this:
and used like so:
Support for converting the values back to names can be added this way:
This overwrites anything with that name, but it is useful for rendering your enums in output. It will throw KeyError if the reverse mapping doesn't exist. With the first example:
|
|||||||||||||||||||||
|
|
Before PEP-435, Python didn't have an equivalent but you could implement your own. Myself, I like keeping it simple (I've seen some horribly complex examples on the net), something like this ...
In Python 3.4 (PEP 435), you can make Enum the base class. This gets you a little bit of extra functionality, described in the PEP. For example, enum values are distinct from integers.
If you don't want to type the values, use the following shortcut:
|
|||||||||||||||||||||
|
|
Here is what I use....
Here is its Implementation...
|
|||||||||||||||||
|
|
If you need the numeric values, here's the quickest way:
|
|||||||||
|
|
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:
A recent thread on python-dev pointed out there are a couple of enum libraries in the wild, including:
|
|||||||||||||||||||||
|
|
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. |
|||||
|
|
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) |
|||||
|
Use it like this:
if you just want unique symbols and don't care about the values, replace this line:
with this:
|
|||||
|
|
So, I agree. Let's not enforce type safety in Python, but I would like to protect myself from silly mistakes. So what do we think about this?
It keeps me from value-collision in defining my enums.
There's another handy advantage: really fast reverse lookups:
|
|||||||||
|
|
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. |
||||
|
|
|
An Enum class can be a one-liner.
How to use it (forward and reverse lookup, keys, values, items, etc.)
|
||||
|
|
|
I prefer to define enums in Python like so:
It's more bug-proof than using integers since you don't have to worry about ensuring that the integers are unique (e.g. if you said Dog = 1 and Cat = 1 you'd be screwed). It's more bug-proof than using strings since you don't have to worry about typos (e.g. x == "catt" fails silently, but x == Animal.Catt is a runtime exception). |
||||
|
|
|
This is the best one I have seen: "First Class Enums in Python" http://code.activestate.com/recipes/413486/ It gives you a class, and the class contains all the enums. The enums can be compared to each other, but don't have any particular value; you can't use them as an integer value. (I resisted this at first because I am used to C enums, which are integer values. But if you can't use it as an integer, you can't use it as an integer by mistake so overall I think it is a win.) Each enum is a unique value. You can print enums, you can iterate over them, you can test that an enum value is "in" the enum. It's pretty complete and slick. Edit (cfi): The above link is not Python 3 compatible. Here's my port of enum.py to Python 3:
|
||||
|
|
|
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! |
||||
|
|
|
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. |
||||
|
|
|
Another, very simple, implementation of an enum in Python, using
or, alternatively,
Like the method above that subclasses
But has more flexibility as it can have different keys and values. This allows
to act as is expected if you use the version that fills in sequential number values. |
||||
|
|
|
I have had occasion to need of an Enum class, for the purpose of decoding a binary file format. The features I happened to want is concise enum definition, the ability to freely create instances of the enum by either integer value or string, and a useful
A whimsical example of using it:
Key features:
|
||||
|
|
|
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.
|
||||
|
|
|
This solution is a simple way of getting a class for the enumeration defined as a list (no more annoying integer assignments): enumeration.py:
example.py:
|
||||
|
|
|
While the original enum proposal, PEP 354, was rejected years ago, it keeps coming back up. Some kind of enum was intended to be added to 3.2, but it got pushed back to 3.3 and then forgotten. And now there's a PEP 435 intended for inclusion in Python 3.4. The reference implementation of PEP 435 is As of April 2013, there seems to be a general consensus that something should be added to the standard library in 3.4—as long as people can agree on what that "something" should be. That's the hard part. See the threads starting here and here, and a half dozen other threads in the early months of 2013. Meanwhile, every time this comes up, a slew of new designs and implementations appear on PyPI, ActiveState, etc., so if you don't like the FLUFL design, try a PyPI search. |
||||
|
|
|
The enum package from PyPI provides a robust implementation of enums. An earlier answer mentioned PEP 354; this was rejected but the proposal was implemented http://pypi.python.org/pypi/enum. Usage is easy and elegant:
|
||||
|
|
|
I needed the possibility of having the enum values be floats (not just integers) for use in defining API's where the enum classes are part of the API. My requirements (and implementation) are in the blog post Enums in Python: a more flexible and powerful implementation. |
||||
|
|
|
On 2013-05-10, Guido agreed to accept PEP 435 into the Python 3.4 standard library. This means that Python finally has builtin support for enumerations! Declaration:
Representation:
Iteration:
Programmatic access:
For more information, refer to the proposal. Official documentation will probably follow soon. |
||||
|
|
|
The new standard in Python is PEP 435, so an Enum class will be available in future versions of Python:
However, to begin using it, now you can install the original library that motivated the PEP:
Then you can use it as per its online guide:
|
||||
|
|
|
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. |
||||
|
|
|
Here is another one. It seems somewhat similar to the general approach used by @Cipher. The author called it yapenum, "yet another Python enum". |
||||
|
|
|
I had need of some symbolic constants in pyparsing to represent left and right associativity of binary operators. I used class constants like this:
Now when client code wants to use these constants, they can import the entire enum using:
The enumerations are unique, they can be tested with 'is' instead of '==', they don't take up a big footprint in my code for a minor concept, and they are easily imported into the client code. They don't support any fancy str() behavior, but so far that is in the YAGNI category. |
|||||
|
|
Here is a variant on Alec Thomas's solution:
|
||||
|
|
|
It's 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:
|
||||
|
|
|
Why must enumerations be ints? Unfortunately, I can't think of any good looking construct to produce this without changing the Python language, so I'll use strings:
Then again maybe it's even better now that we can naturally test against strings, for the sake of configuration files or other remote input. Example:
|
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
statmodule should IMHO be enums rather than just bareintconstants. As an example of (1), imagine a state machine for controlling (e.g.) a plastic casting machine, with states like:cold,heating,ready,close_mould,injecting,open_mould,eject_castingYou could usefully write code likeif state < ready:which would be true for bothcoldandheating. – steveha Mar 21 '12 at 22:33