python Write a program to print the Even numbers till 20 using While Loop
Answers
Answered by
0
Answer:
i=2
while i <=20:
print(i)
i +=2
Explanation:
Similar questions