Python 的枚举等价物
对于不同索引名称的列表(如 C/C++ 或 Java 中的 Enum),Python 习惯用法是什么?
说明:我希望将某个值的属性设置为受限范围,例如牌组Heart、Club、Spade、Diamond
。我可以用 0..3 范围内的 int 来表示它,但它允许超出范围的输入(例如 15)。
Possible Duplicate:
What’s the best way to implement an ‘enum’ in Python?
What is the Python idiom for a list of differently indexed names (like Enum in C/C++ or Java)?
Clarification: I want a property of a value to be set to a restricted range, such as card suites Heart, Club, Spade, Diamond
. I could represent it with an int in range 0..3, but it would allow out of range input (like 15).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
等等。Python
中的类是一个对象。所以你可以写
等等。
etc.
A class in python is an object. So you can write
etc.
这是 stackoverflow 上非常常见的问题
编辑:
here is very same popular question on stackoverflow
Edit: