Search Results

32
votes

What’s the best way to implement an ‘enum’ in Python?

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 ... …