I keep getting the repr() representation of objects in my tree class

后端 未结 0 1153
余生分开走
余生分开走 2021-01-13 00:38
class Tree:
        
    def __init__(self, root, child):
        self.root = root 
        self.child = child
        
    def add_child(self, obj):
        self.ch         


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