Multiple Inheritance in Python simple solution

后端 未结 0 950
忘了有多久
忘了有多久 2020-12-08 18:11
class father:
    def __init__(self):
        print("Dad")

class mother:
    def __init__(self):
        print("Mom")
        
class child(fathe         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题