Answers for "no duplicates python"

8

remove duplicates python

mylist = ["a", "b", "a", "c", "c"]
mylist = list(dict.fromkeys(mylist))
Posted by: Guest on May-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language