Write a Python program that uses a ‘FOR’ loop to print even numbers from 2 to 100, inclusively.
Ответ:
Answer:
Объяснение:
for i in range(2,101): #101 because 100 must be printed too
if i%2 == 0:
print(i)