摘要: while+continue # 请听题:循环打印出0-10之间的数字 # 请听题:循环打印出0-9之间的数字,但是不打印6 count = 0 while count < 10: if count == 6: count+=1 continue # 是跳出本次循环,整体循环还在继续 print(c 阅读全文
posted @ 2023-05-18 19:51 吼尼尼痛 阅读(14) 评论(0) 推荐(0) 编辑