0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

python3でコーディングテストに受かるための自分メモ[9/2] (break, continue, pass)

Posted at

ループから抜けたい

pythonでループから抜けたり、処理をスキップする処理について

break

pythonでループ処理そのものからから抜け出したい場合は
breakが使える

continue

ループ処理の現在のループを抜けて次のループに移動したい場合は
continueが使える

####新情報

pass

処理が決まっていない時などに、passを使うことで
通常if文の中は1行何かしらの処理がなければいけないが
passを書くことができる。
passは名前どうり処理をpassするだけなので
passの後に処理を書くとその処理は実行されてしまう。
使い方として、処理が確定していないときに書くのが良いだろう。

goto系のジャンプはできないのか

結論できる。
moduleをインポートする必要があるのでバニラのpythonではできないので、
今回のテスト対策では必要ないだろう。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?