# 求出1-100全部奇数。 n = 1 while n <101: temp = n % 2 if temp == 0: pass else: print(n) n = n + 1 print('>>>>>>>>end>>>>>>>')