Computer Science, asked by sahad19, 7 months ago

write a python program to display all even numbers from 1 to 50 ?​

Answers

Answered by da4729204
4

Answer:

for i in range(1,51):

if i%2==0:

print(i)

Similar questions