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.
7 def unique1(lst): 8 outputList = [] 9 for el in lst: 10 if el not in outputList: 11 outputList.append(el) 12 print(outputList)
15 def unique2(lst): 16 myset=set(lst) 17 print(list(myset))