Say I have a list
list = ["1","2","1","3"]
and I want to get rid of the duplicate 1's but I want to keep one copy so the list would read
list = ["1","2","3"]
I know I can use set() to get rid of the duplicates, but I will not be able to keep a copy. How would I go about keeping a copy?