def remove_dupiclates(list_): new_list = [] for a in list_: if a not in new_list: new_list.append(a) return new_list