1 2 3 4 5 6
def remove_duplic_list(l): temp = [] for x in l: if x not in temp: temp.append(x) return temp