python super
class Square(Rectangle):
def __init__(self, length):
super().__init__(length, length)
python super
class Square(Rectangle):
def __init__(self, length):
super().__init__(length, length)
python why call super(class).__init__()
super() lets you avoid referring to the base class explicitly,
which can be nice.
But the main advantage comes with multiple inheritance.
Note that the syntax changed in Python 3.0: you can just say super().__init__()
instead of super(ChildB, self).__init__() which IMO is quite a bit nicer.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us