write a for loop that displays the even numbers from 51 to 60 (in python)
Answers
Answered by
12
Explanation:
for i in range(51,61):
if i%2==0:
print(i)
Similar questions