Search Results

14
votes

Python 3.0 and language evolution

The only language I can think of to attempt such a mid-stream change would be Perl. Of course, Python is beating Perl to that particular finish line by releasing first. It should be noted, however, …
3
votes

python, basic question on loops

There are two usual approaches, both already mentioned, which amount to: while True: do_stuff() # and eventually... break; # break out of the loop or …