1
vote
What’s the best way to implement an ‘enum’ in Python?
davidg recommends using dicts. I'd go one step further and use sets:
months = set('January', 'February', ..., 'December')
Now you can test whether a value matches …
