三項演算子は『式』("expression") に対して使うもの。
break や continue は『式』ではなく『文』("statement") なので下の例のような横着はできませんよ、という話.
ダメな例
for i in range(100):
break if i > 20 else continue
Go to list of users who liked
More than 3 years have passed since last update.
三項演算子は『式』("expression") に対して使うもの。
break や continue は『式』ではなく『文』("statement") なので下の例のような横着はできませんよ、という話.
for i in range(100):
break if i > 20 else continue
Register as a new user and use Qiita more conveniently
Go to list of users who liked