Python的while循环可以有多种终止方式,下面列举了一些常用的方法:
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循环的方法,具体选择哪种方法取决于每个具体情况。