I've spent couple of hours and still unable to get the best result. However, the task is very easy but it seems I'm missing something or simply slow today.
So, we have a simple tree structure of objects. Object in formal looks like this:
node:
name {str}
value {str}
children {list}
node,
node,
...
I need to create the walk function that outputs the list of all nodes in the format of list of tuples:
for node in topNode.walk():
path, object = node
where path is obviously a path to the current node (i.e. /name/name). Almost the same does os.walk() function.
At the moment I'm in stuck with this piece of code:
def walk(self):
result = []
for child in self.children:
result.append(child)
result.extend(child.walk())
return result
How to add path in here?
Thanks for any help!