Write a Python program to print the elements in a given list without the duplicates. code example
Example: remove duplicates python
mylist = ["a", "b", "a", "c", "c"]
mylist = list(dict.fromkeys(mylist))
mylist = ["a", "b", "a", "c", "c"]
mylist = list(dict.fromkeys(mylist))