LoginSignup
2
0

More than 5 years have passed since last update.

python自分用メモ

Posted at
for i, value in enumerate(seq):
    if value == hoge:
            break
else:
    return

for-else構文。キモい
for文が終わった後にelseが実行される、breakでfor文から抜けた時にはelseは実行されない。

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