# Finicky Counter
# Demonstrates the break and continue statements
count = 0
while True:
count += 1
# end loop if count greater than 10
if count > 10:
break
# skip 5
if count == 5:
continue
print(count)
input("\n\nPress the enter key to exit.")
この状況で while True ループが count に適用されるのはなぜですか? ブール値がカウントの結果を測定している理由がわかりません。正しい構文は次のとおりではないでしょうか。
while count:
これを明確にする助けをいただければ幸いです。