# 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 循环适用于这种情况下的计数?我不明白为什么布尔值会衡量计数的结果。正确的语法不是:
while count:
任何澄清这一点的帮助将不胜感激。