Write a program to print even numbers from 10 to 50.
Answers
Answered by
0
Explanation:
...............................
Attachments:
Answered by
2
print("\n".join(str(n) for n in range(10, 50 + 1) if n % 2 == 0))
Similar questions