Em 01-02-2012 01:39, Paulo da Silva escreveu:
> Hi!
> 
> What is the best way to iterate thru a huge list having the 1st element
> a different process? I.e.:
> 
> process1(mylist[0])
> for el in mylist[1:]:
>       process2(el)
> 
> This way mylist is almost duplicated, isn't it?
> 
> Thanks.


I think iter is nice for what I need.
Thank you very much to all who responded.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to