✅ 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()