Question: What is the output from the following code: class A: def init_ (self, i): self.-1 self.j 5 def getInfo(self): print (self._i, self.j) class B(A): def
What is the output from the following code: class A: def init_ (self, i): self.-1 self.j 5 def getInfo(self): print (self._i, self.j) class B(A): def init_ (self): super().init (self) self.j 7 c.getInfo()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
