Essay on The Republic Day | Republic Day Essay in English
[ Festival Ganesh Chaturthi Essay in English for Students and Children ] [ Essay on my favourite freedom fighter ] ⚔️ [ दुर्गा पूजा पर निबंध (Durga Puja Hindi Essay) ]
[Essay On 75th Independence Day Of India] [Azadi Ka Amrit Mahotsav Essay in English]

What will be displayed by the following code?

Loading

Practice Method Overriding Questions – What will be displayed by the following code?
class A:
    def __init__(self, i = 0):
        self.i = i
    def m1(self):
        self.i += 1
class B(A):
    def __init__(self, j = 0):
        A.__init__(self, 3)
        self.j = j
    def m1(self):
        self.j += 1
def main():
    b = B()
    b.m1()
    print(b.i, b.j)
main()