BRWIKI

Welcom to brwiki

Python Tutorials

loop statement

flowchart LR
A([Start]) --> B{Condiction};
B -->|Yes| C[/Statements/];
C --Loop--> B;
B --->|No| D([End]);

While

1
2
while 判断条件(condition):
実行コマンド(statements)

whileの中にいる判断条件を満足すれば、次のコマンドを繰り返す実行する. 判断条件が外れた場合は直接このLoopを退出する. 簡単なwhile実例:

1
2
3
4
a = 1
while a < 10:
print(a)
a += 2

レベルアップ

For

Loop nesting