Learning to program - The Basics - Looping - Or the art of repeating oneself!

さぁ、ループ文がはじまったぞ。でもこの辺もPythonチュートリアルで鍛えられてるから乗り越えられるだろう。

Just one thing to point out - do you see the colon (:) at the end of the while (and for) lines above? That just tells Python that there's a chunk of code (a block) coming up. As we'll see in a moment, other languages have their own ways of telling the interpreter to group lines together, Python uses a combination of the colon and indentation.

よし、Roop文が終わったぞ。