More pythonic code
This commit is contained in:
parent
dcde484a63
commit
a74c17f323
@ -121,10 +121,7 @@ class Node:
|
|||||||
|
|
||||||
def printtree(self, level: int = 0) -> str:
|
def printtree(self, level: int = 0) -> str:
|
||||||
'''returns a representation of the tree using indentation'''
|
'''returns a representation of the tree using indentation'''
|
||||||
r = ''
|
r = ' ' * level + self.name
|
||||||
for i in range(level):
|
|
||||||
r += ' '
|
|
||||||
r += self.name
|
|
||||||
if self.name in b_operators and isinstance(self, Binary):
|
if self.name in b_operators and isinstance(self, Binary):
|
||||||
r += self.left.printtree(level + 1)
|
r += self.left.printtree(level + 1)
|
||||||
r += self.right.printtree(level + 1)
|
r += self.right.printtree(level + 1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user