Q:

Write a Python function that takes a list and returns a new list with unique elements of the first list.

0

Write a Python function that takes a list and returns a new list with unique elements of the first list.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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])) 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now