class Node: state = None #[{stan}] parent = None #[Node] action = None #[Forward/Right/Left] def __init__(self, state): self.state = state