On 10/28/2012 06:57 AM, Devin Jeanpierre wrote:
line = function(x, y, z)
>while line:
>      do something with(line)
>      line = function(x, y, z)


How about:

line = True
while line:
        line = function(x, y, z)
        do something with(line)

?

Frederic

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to