for キーワードは、指定した配列やコレクションの内容を列挙します。
次の例では、for キーワードを使用して変数 list の内容を列挙します。
list = range(5) for i in list: print i
結果
0 1 2 3 4