python:for_range_enumerate

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
python:for_range_enumerate [2016/01/22 16:15] ともやんpython:for_range_enumerate [2019/08/19 06:52] (現在) ともやん
行 29: 行 29:
 color4: white color4: white
 </code> </code>
 +
 +===== continue と break =====
 +一定の条件で処理をスキップ
 +<code python>
 +for index in range(10):
 +    if index >= 2 and index <= 7:
 +        continue
 +    print('index: {0}'.format(index))
 +
 +index: 0
 +index: 1
 +index: 8
 +index: 9
 +</code>
 +一定の条件で処理を中止
 +<code python>
 +for index in range(10):
 +    if index >= 4:
 +        break
 +    print('index: {0}'.format(index))
 +     
 +index: 0
 +index: 1
 +index: 2
 +index: 3
 +</code>
 +
  • python/for_range_enumerate.1453446945.txt.gz
  • 最終更新: 2019/05/18 02:23
  • (外部編集)