#navi(../)
* Pythonで繰り返しループのサンプル・while [#be29896a]
whileを使った繰り返しループ処理のサンプルコードおよび実行結果を以下に記します。
#contents
#htmlinsertpcsp(ll-top.html,ll-sp.html)
* 動作確認環境 [#hd142a2b]
$ python --version
Python 2.7.3
$ lsb_release -d
Description: Ubuntu 12.04.4 LTS
* 関連記事 [#d3c1aa7d]
-[[Pythonで繰り返しループのサンプル・for>Python/サンプル/繰り返しループのサンプル・for]]
-[[Pythonで繰り返しループのサンプル・while>Python/サンプル/繰り返しループのサンプル・while]]
-[[Pythonのディクショナリからループでキー値と値を取得する方法>Python/ディクショナリからループでキー値と値を取得する方法]]
* whileループのサンプル [#n10a518e]
whileループの場合、条件が成立(真)の場合ループします。~
以下に値を減算してループを抜けるwhileループのサンプルコードを記します。
-サンプルコード
i = 10
while i > 0:
print i
i -= 1
-実行結果
10
9
8
7
6
5
4
3
2
1
whileループ内で変数iの値をデクリメントしています。~
while i > 0: が成立しなくなるとループから抜けてきます。
以上、whileループのサンプルコードでした。
#htmlinsertpcsp(ll-btm.html,ll-sp.html)