下記コードでinput()に0を入力してもwhileループを抜け出せないのはなぜでしょうか?
while True: a = int(input()) print(a) if a is False: break
回答2件
あなたの回答
tips
プレビュー
投稿2020/04/08 03:02
下記コードでinput()に0を入力してもwhileループを抜け出せないのはなぜでしょうか?
while True: a = int(input()) print(a) if a is False: break
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/08 03:40
2020/04/08 10:15
2020/04/10 11:24