I'm trying to remove duplicate items in a list through a dictionary:
def RemoveDuplicates(list):
d = dict()
for i in xrange(0, len(list)):
dict[list[i]] = 1 <------- error here
return d.keys()
But it is raising me the following error:
TypeError: 'type' object does not support item assignment
What is the problem?
dictandlistare a Very Bad Idea. Never call a variabledict,list,tuple,int,floator anything of the kind. It makes it very hard to discern what you're talking about. And it may make your program not work because your local variable name has replaced a built-in name. – S.Lott Nov 28 '09 at 20:21