Python 支持由解释器强制执行的常量吗?
可能的重复:
在 Python 中创建常量
Python 支持由解释器强制执行的常量吗?例如:整数常量。程序员定义的枚举类型怎么样?
Possible Duplicate:
Creating constant in Python
Does Python support constants that are enforced by the interpreter? For example: integer constants. How about a programmer defined enumerated type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。如果您希望某些东西保持不变,那么就不要修改它。
No. If you want something to be constant then just refrain from modifying it.