how to remove duplicate elements in list in python code example
Example 1: python remove duplicates from list
# remove duplicate from given_list using list comprehension
res = []
[res.append(x) for x in given_list if x not in res]
Example 2: remove duplicates python
mylist = ["a", "b", "a", "c", "c"]
mylist = list(dict.fromkeys(mylist))
Example 3: python remove duplicates
word = input().split()
for i in word:
if word.count(i) > 1:
word.remove(i)
Example 4: sort and remove duplicates list python
myList = sorted(set(myList))