0
1.9kviews
Write a python to find out the unique elements in the list.

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

1 Answer
0
75views

Explanation:-

  • Create a variable n which stores the no of elements user wants to add to the list.
  • Iterate for loop n times and take the elements entered from the user and append them to a list l & pass on this list l to function unique.
  • This function has …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.