Santiago  Romero <[EMAIL PROTECTED]> writes:
> > >>> li = [1,2,3,4,5]
> > >>> filter(lambda x: x != 3, li)
> > [1, 2, 4, 5]
> 
>  I haven't measured it, but this should be the fast solution in all
> the thread ...

li.remove(3) is probably faster.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to