Suppose A is a subclass of B, to invoke the __init__ method in B from

Loading

โœช Choose the correct option.

Suppose A is a subclass of B, to invoke the __init__ method in B from A, you write _________.

A. super().__init__()
B. super().__init__(self)
C. B.__init__()
D. B.__init__(self)

Leave a Comment