Python的while循環(huán)可以有多種終止方式,下面列舉了一些常用的方法:
count = 0
while count < 10:
print(count)
count += 1
count = 0
while True:
if count >= 10:
break
print(count)
count += 1
flag = True
count = 0
while flag:
if count >= 10:
flag = False
print(count)
count += 1
count = 0
while True:
try:
if count >= 10:
raise StopIteration
print(count)
count += 1
except StopIteration:
break
以上是一些常用的終止while循環(huán)的方法,具體選擇哪種方法取決于每個具體情況。