Answer:
for x in range(20,120):
if x % 2 == 0:
continue
print(x)
Step-by-step explanation:
in a range of 20 to 120 it does the following, if x is divisible by two as an int, then try again with a new number. If not, print that number.
5.9m questions
7.8m answers