SyntaxFix
Write A Post
Hire A Developer
Questions
You can use set to remove duplicates:
set
mylist = list(set(mylist))
But note the results will be unordered. If that's an issue:
mylist.sort()