Python Imprimer les nombres impairs
# Python program to print all ODD numbers in the range[a, b]
a, b = (7, 19)
for num in range(a, b+1): # b+1 is to include b itself
if num & 1:
print(num, end = ' ')
# output:
# 7 9 11 13 15 17 19
Playful Python