8 lines
196 B
Python
8 lines
196 B
Python
|
|
class Node(object):
|
|
def __init__(self, type, children=None, node=None, data=None):
|
|
self.type = type
|
|
self.children = children
|
|
self.node = node
|
|
self.data = data
|