brad a écrit :
> How is this expressed in Python?
> 
> If x is in y more than three times:
>     print x
> 
> y is a Python list.


if y.count(x) > 3:
   print x
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to