Question: python What code could you put in the third line in class B below to invoke B's superclass's constructor? Select all that apply. class A:
python

What code could you put in the third line in class B below to invoke B's superclass's constructor? Select all that apply. class A: def _init__(self, i=1) : self.i=i class B(A): def__init__(self, j=2) : def main(): b=j print(b.i, b.j) main()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
