
# Node used  in a binary tree

class Node:
    def __init__(self, key):
        # mandatory
        self.left = None
        self.right = None
        self.key = key

        # a field for demonstation purposes
        # (may be omitted in other tree applications)
        self.tag = ' ' # one character, service info



