sapsi wrote: > 2) This is not related, but is there i neat way (without pop and list > comprehension) to convert a set into a list? I say neat because i'm > guessing using list comprehension might turn out be slow and there > might be other methods which are faster.
a = set([1, 2, 3, 4]) b = list(a) -- http://mail.python.org/mailman/listinfo/python-list