1 2 3 4 5 6
def unique_product(list_data): temp = list(set(list_data)) p = 1 for i in temp: p *= i return p