.
Would you be interested in receiving the details?
Best regards,
Eileen
Online-Strategist
CELLsIX
MEDIA PTY LTD.
Headquarters: Office 7003 X2 Tower, Cluster X, Melbourne Vic. 3000 Australia
Other Branches: Sydney | Perth | Brisbane | Adelaide | Hobart
Disclaimer: This e-mail is private and
Bob Greschke wrote:
> <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > PTY wrote:
> >> Which is better?
> >>
> >> lst = [1,2,3,4,5]
> >>
> >> while lst:
> >> lst.pop()
> >>
> >> OR
>
Which is better?
lst = [1,2,3,4,5]
while lst:
lst.pop()
OR
while len(lst) > 0:
lst.pop()
--
http://mail.python.org/mailman/listinfo/python-list