Python While ループ ステートメント
Python プログラミングの while ステートメントは、ループ内、つまり特定の条件下でプログラムを実行するために使用されます。 、ループ内で特定のプログラムを実行し、繰り返し処理する必要がある同じタスクを処理します。
基本的な形式は次のとおりです: (推奨学習: Python ビデオ チュートリアル )
while 判断条件: 执行语句……
実行ステートメントは次のとおりです。単一のステートメントまたはステートメント ブロック。判定条件には任意の式を指定でき、ゼロ以外または null 以外の値が true となります。
#判定条件が偽の場合、ループは終了します。
#
# continue 和 break 用法 i = 1while i < 10: i += 1 if i%2 > 0: # 非双数时跳过输出 continue print i # 输出双数2、4、6、8、10 i = 1while 1: # 循环条件为1必定成立 print i # 输出1~10 i += 1 if i > 10: # 当i大于10时跳出循环 break
ループはelse文を使用します#Python では、while...else がループ内にあります。条件が false の場合、else ステートメント ブロックが実行されます:
#!/usr/bin/python count = 0 while count < 5: print count, " is less than 5" count = count + 1 else: print count, " is not less than 5"
上記の例の出力結果は次のとおりです:
0 is less than 5 1 is less than 5 2 is less than 5 3 is less than 5 4 is less than 5 5 is not less than 5
Python 関連の技術記事をさらに詳しく知りたい場合は、
Python チュートリアル以上がPythonのwhileの使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。