inheritance behaviour for variables in python

前端 未结 0 1218
有刺的猬
有刺的猬 2020-12-21 23:34
 class base:
    def __init__(self):
        self.x = [1, 2, 3]

        
class child1(base):
    def __init__(self):
        super().__init__()
        
    def __r         


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