I have a list:
d = [{'x':1, 'y':2}, {'x':3, 'y':4}, {'x':1, 'y':2}]
{'x':1, 'y':2} comes more than once I want to remove it from the list.My result should be:
d = [{'x':1, 'y':2}, {'x':3, 'y':4} ]
Note:
list(set(d)) is not working here throwing an error.
set()will try to hash each element of the list you give it. Adictis not hashable in Python, which is whyset(d)will throw aTypeError– Rodrigue Jun 8 '11 at 15:09