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で「int」型の動作を変更しようとしています。
それは言う
'__new__' is readonly.
それを行う方法はありますか?
ありがとう。
組み込み型を変更することはできませんが、それから派生させることはできます。
class MyInt(int): def __new__(cls, *args): # whatever