Enums in Python
Posted on Fri, 17 Feb 2017 in Python • Tagged with enums, python
Enums are less used feature in Python. We as programmers prefer to use weird dicts or lists where enum should be used. Why? Because it is rather new feature and you have to install back port library if you use Python 2.7. However, it's better to use them in many cases.
Continue reading