Get your own website Result Size: 625 x 565
x
 
mylist = ["a", "b", "a", "c", "c"]
mylist = list(dict.fromkeys(mylist))
print(mylist)
['a', 'b', 'c']