In Python 2.6.5, given this list mylist = [20, 30, 25, 20]
Why does this set comprehension not work?
>>> {x for x in mylist if mylist.count(x) >= 2}
File "<stdin>", line 1
{x for x in mylist if mylist.count(x) >= 2}
^
SyntaxError: invalid syntax
Thank you.
set([20])– Levon Jul 15 '12 at 0:31{x for x, count in collections.Counter(mylist).items() if count >= 2}is O(n) instead of your O(n^2) approach. – Dougal Jul 15 '12 at 0:33SyntaxError: invalid syntax) – Levon Jul 15 '12 at 0:35