n=0 while n<101: temp= n %2 if temp==0: pass else: print(n) n=n+1
请求出1-100奇数
原文:http://www.cnblogs.com/huangjinshan/p/8047367.html