标签: python
我试图修改'int'类型的行为 在Python中。
它说
'__new__' is readonly.
有办法吗?
感谢。
答案 0 :(得分:5)
您无法修改内置类型,但可以从中派生:
class MyInt(int): def __new__(cls, *args): # whatever