摘要: Python学习 day03 (续day02) 4.运算符 练习题 # 打印0到100里面的奇数 count = 1 while count <= 100: if count % 2 != 0: print(count) count += 1 count = 1 while count <= 100 阅读全文
posted @ 2019-05-06 17:36 风里来雨里去duu 阅读(177) 评论(0) 推荐(0) 编辑