2017-12-15python全栈9期第二天第三节之使用while循环输出1到100的奇数,时间:2021-12-11 20:07:09#!/user/bin/python# -*- coding:utf-8 -*-count = 1while count <101: if count % 2 == 1: print(count) count += 1