I have a dictionary like this.
d = {'ABCS': ['12', '12', '113', '12']}
I want unique values like this
{'ABCS': ['12', '113']}
I tried set and its giving me something like this
{'ABCS': [set(['1', '2']), set(['1', '2']), set(['1', '3']), set(['1', '2'])]}