How to use 'list unique python' in Python

Every line of 'list unique python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
7def unique1(lst):
8 outputList = []
9 for el in lst:
10 if el not in outputList:
11 outputList.append(el)
12 print(outputList)
15def unique2(lst):
16 myset=set(lst)
17 print(list(myset))

Related snippets