logo

Crowdly

Browser

Add to Chrome

Виберіть, що виведеться після виконання вказаного фрагменту коду ...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Виберіть, що виведеться після виконання вказаного фрагменту коду

class Base:

    def op1(self):

        self.op2()

    def op2(self):

        print("Base", end = " ")

 

class SubA(Base):

    def op2(self):

        print("SubA", end = " ")

 

class SubB(SubA):

    def op2(self):

        print("SubB", end = " ")

        super().op2()

 

obj = SubB()

obj.op1()

More questions like this

Want instant access to all verified answers on vns.lpnu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome