[Python-Dev] sort() return value | |
Guido van Rossum guido at python.org | |
Fri Oct 17 10:56:38 EDT 2003 | |
Previous message: [Python-Dev] Trashing recursive objects comparison? | |
Next message: [Python-Dev] accumulator display syntax | |
Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] | |
I'd like to explain once more why I'm so adamant that sort() shouldn't | |
return 'self'. |
In parts 6 and 7 we will write a tic-tac-toe console program that plays itself.
The goal is to learn how to understand and solve problems.
We know how to write functions now, but we've glossed over the other fundamental aspect of programming; the data.
We're going to write our own functions and learn how to grow code in small steps.
Now is probably a good time to start using a text editor designed for programming.
You can use whatever you like.
I use Sublime Text for miscellaneous editing, and the sample code in this series.
We skipped a detailed explanation of if statements and for loops in part 3 because they deserve a lot of attention.
If statements and for loops the two most important flow control statements in most programming.
These are probably the first thing beginners realize about programming.