while true: !!!

Fredrik Lundh fredrik at effbot.org
Tue Dec 12 12:42:13 EST 2000


"Steve" wrote:
> I dislike infinite while loops and use:
>
> for line in file.readlines()
>     ...do stuff...

what makes you so sure that's not an infinite loop?

(well, in the current implementation, it isn't: if your file
has more than 2147483647 lines, your code won't read
all of them... ;-)

</F>





More information about the Python-list mailing list