New Text Document
class BST: def __init__(self): self.root = None
return root
# Driver codeif __name__ == "__main__": bst = BST()