Write a code that prints all odd numbers from 1 to 100. Example: 1 3 5 7 ... 99
Ответ:
for i in range(1, 101):
if i % 2 != 0:
print(i)
Код опять на питоне