Print even numbers Question Print even numbers from 2 to 20. in progress 1 Python YashikaKhurana 55 years 2 Answers 773 views Master 0
Answers ( 2 )
for i in range(1,11):
print(i*2)
for i in range(2,21):
if i%2==0:
print(i)