Computer Science, asked by magadamu1974, 9 months ago

write a for loop that displays the even numbers from 51 to 60 (in python)​

Answers

Answered by RG416
12

Explanation:

for i in range(51,61):

if i%2==0:

print(i)

Similar questions