0
Answer

How can get Azure solution Architect certification

How can get Azure solution Architect certification
Thanks in advance

class Parent1:
    def show(self):
        print("This is Parent1")

class Parent2:
    def show(self):
        print("This is Parent2")

class Child(Parent1, Parent2):
    pass

c = Child()
c.show()

bck