LoginSignup
1
1

Pythonで「break文を使った繰り返し処理の強制終了」の動作を確認してみた

Posted at

概要

Pythonで「break文を使った繰り返し処理の強制終了」の動作を確認してみました。以下のページを参考にしました。

実装

以下のファイルを作成しました。

sample.py
num = 0
while True:
    print("num = " + str(num))
    num += 1
    if num >= 2:
        break

print("End")

num = 1
while True:
    print("num = " + str(num))
    num *= 2
    if num > 10:
        break

print("While End")

以下のコマンドを実行しました。

$ python3 sample.py 
num = 0
num = 1
End
num = 1
num = 2
num = 4
num = 8
While End

まとめ

何かの役に立てばと。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1