Am trying to convert a set to a list using this syntax:
first_list = [1,2,3,4]
my_set=set(first_list)
my_list = list(my_set)
but i get a stack trace
Traceback (most recent call last):
File "<console>", line 1, in <module>
TypeError: 'set' object is not callable
How do i do this? Am using python 2.6
Gath

TypeError: 'set' object is not callable: What isset? Thanks – eat Jul 6 '11 at 9:13my_setis already alist, not a set. – Shawn Chin Jul 6 '11 at 9:18set=set(first_list)or something. Nowsetis redefined to this set object which would cause that error. Try again with a fresh Python interpreter – gnibbler Jul 6 '11 at 9:35