class BT: def __init__(self, lp , data , rp): self.LeftPointer = lp self.data = data self.RightPointer = rp def insert(x): #