重複の可能性:
str または int からの継承
皆さん、こんにちは。
int クラスをサブクラス化しようとしていますが、成功していません。これが私の試みです:
class SpecialInt(int):
def __init__(self, x, base=10, important_text=''):
int.__init__(self, x, base)
self.important_text=important_text
私が次のことを実行した場合:
integer = SpecialInt(123, 10, 'rage of the unicorns')
次のエラーが表示されます。
TypeRror: int() takes at most 2 arguments (3 given)
何か案は?:)