1 # Way 1
2 for i in range(1,100):
3     if i % 2 == 1:
4         print(i)
5 
6 # Way 2
7 for i in range(1,100,2):
8     print(i)