摘要: 1、使用while循环输入1 2 3 4 5 6 8 9 10 第一种方法:count = 0while count < 10: count += 1 if count == 7: pass else: print(count) 第二种方法,这个方法常用: count = 0 while count 阅读全文
posted @ 2019-05-29 10:13 kate8Y 阅读(96) 评论(0) 推荐(0) 编辑