差分
このページの2つのバージョン間の差分を表示します。
| 両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
| python:for_range_enumerate [2016/01/22 16:13] – ともやん | python:for_range_enumerate [2019/08/19 06:52] (現在) – ともやん | ||
|---|---|---|---|
| 行 1: | 行 1: | ||
| ====== for range enumerate 文 ====== | ====== for range enumerate 文 ====== | ||
| - | range関数による繰り返し | + | |
| + | ===== range 関数による繰り返し  | ||
| <code python> | <code python> | ||
| In : range(5) | In : range(5) | ||
| 行 14: | 行 15: | ||
| index: 4 | index: 4 | ||
| </ | </ | ||
| - | enumerate関数によるリストの繰り返し | + | ===== enumerate 関数によるリストの繰り返し  | 
| <code python> | <code python> | ||
| In : colors = [' | In : colors = [' | ||
| 行 27: | 行 29: | ||
| color4: white | color4: white | ||
| </ | </ | ||
| + | |||
| + | ===== continue と break ===== | ||
| + | 一定の条件で処理をスキップ | ||
| + | <code python> | ||
| + | for index in range(10): | ||
| + | if index >= 2 and index <= 7: | ||
| + | continue | ||
| + |     print(' | ||
| + | |||
| + | index: 0 | ||
| + | index: 1 | ||
| + | index: 8 | ||
| + | index: 9 | ||
| + | </ | ||
| + | 一定の条件で処理を中止 | ||
| + | <code python> | ||
| + | for index in range(10): | ||
| + | if index >= 4: | ||
| + | break | ||
| + |     print(' | ||
| + | |||
| + | index: 0 | ||
| + | index: 1 | ||
| + | index: 2 | ||
| + | index: 3 | ||
| + | </ | ||
| + | |||