摘要: 1、while循环 使用while打印1.2.3.4.5.6.8.9.10 #快速注释Ctrl+?count = 1 while count <= 10: if count == 7: count = count + 1 pass #表示过,不执行下面程序 else: print(count) co 阅读全文
posted @ 2020-03-07 22:17 Brilliance+ 阅读(538) 评论(0) 推荐(0)