Answers for "remove dups from list python"

8

python - remove duplicate items from the list

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

python remove repeated elements from list

# ----- Create a list with no repeating elements ------ #

mylist = [67, 7, 89, 7, 2, 7]
newlist = []

  for i in mylist: 
    if i not in newlist: 
        newlist.append(i)
Posted by: Guest on August-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language