www.python.org

2014-10-28 Thread Eileen | Cellsix Pty Ltd
. 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

Re: Coding style

2006-07-17 Thread PTY
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 >

Coding style

2006-07-17 Thread PTY
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