标签:分享 技术 图片 continue 复制 too nbsp tin 代码
1、and or not的用法
2、while 的用法 及 (break 中断循环) 注:n +=1 等价于n=n+1
3、continue 打断不往下执行 继续循环
ex:
n=1 #n=1 while n<=10 # 当n小于等于10条件立成 n +=1 #n=n+1 if n==3 #如果n=3 continue #打断不往下执行,继续跳到while进行循环 print(n)
标签:分享 技术 图片 continue 复制 too nbsp tin 代码
原文地址:https://www.cnblogs.com/xmxnx/p/9038665.html