2019年11月29日

基础练习题

摘要: 1.使用while循环输入1234568910 a = 1 while a <= 10: if a == 7: pass else: print(a) a = a + 1 2.输出1-100以内的奇数 a = 1 while a <= 100: if a%2 == 0: pass else: pri 阅读全文

posted @ 2019-11-29 17:00 朱金花 阅读(202) 评论(0) 推荐(0) 编辑

导航