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.
class subclass(superclass): def __init__(self, arg1, arg2): superclass.__init__(self, blah1, blah2)
を使用する目的は何superclass.__init__(self, blah1, blah2)ですか? スーパークラスを継承するときに最後の行を使用するかどうかについて少し混乱しています。
superclass.__init__(self, blah1, blah2)