Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python 开发人员曾一度考虑将枚举添加到语言中,但他们放弃了该功能。PEP 354有一些实现吗?——规范看起来相当健壮。
http://pypi.python.org/pypi/enum/是这个 PEP 的实现。
PyPI 包枚举提供了此 PEP 中描述的数据类型的 Python 实现。
此外,Barry Warsaw 的实现。
最后,PEP 435已被 Python 3.4 接受,反向移植为enum34,高级版本为aenum。