while true: !!!
Steve
smnordby at yahoo.com
Wed Dec 13 08:07:18 EST 2000
More information about the Python-list mailing list
Wed Dec 13 08:07:18 EST 2000
- Previous message (by thread): while true: !!!
- Next message (by thread): while true: !!!
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Yes, I should have prefaced my post with: "The files I read are less than 3000 lines and less than 150kB, so I can get away with using a for loop". -Steve- Fredrik Lundh wrote: > > "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>
- Previous message (by thread): while true: !!!
- Next message (by thread): while true: !!!
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list