Write a Python function that takes a list and returns a new list with unique elements of the first list
Topic: Write a Python function that takes a list and returns a new list with unique elements of the first list
Solution
def unique_list(l): x = [] for a in l: if a not in x: x.append(a) return x print(unique_list([1,2,3,3,3,3,4,5]))
List all Python Programs