#!/usr/bin/env python# -*- coding:utf-8 -*-#定义初始值start=1while True: if start==100: break #%运算是取余数 if start%2 ==1: print(start) start +=1