break
while循环在条件不满足时结束,for循环遍历完序列后结束。如果在循环条件仍然满足或序列没有遍历完的时候,想要强行跳出循环,就需要用到break语句。
在线运行演示代码
参考教程
scores = [71, 99, 59, 65] for s in scores: print(s) if s < 60: break a = 1 sum = 0 while a < 10: sum += a print(a, sum) if sum > 10: break a += 1