标签:int 代码 col bre 输入 pre += ... while
break 用于完全结束一个循环,跳出循环执行代码后面的语句
continue和break类似,区别在于continue只是终止本次循环,接着还执行后面的循环
break是完全终止循环
a = 0 while a <= 10: print(a) if a == 5: break a +=1 print("跳出循环")
此代码输入
0 1 2 3 4 5 跳出循环
表明break是完全终止循环
a = 0 while a <= 10: print(a) if a == 5: continue a +=1 print("跳出循环")
此代码输入
0 1 2 3 4 5 5 5 5 5 5 5 5 5.......很多进入死循环
表明continue只终止当前循环,继续执行下次循环。。。
标签:int 代码 col bre 输入 pre += ... while
原文地址:https://www.cnblogs.com/riling/p/10068520.html