

InterviewSolution
Saved Bookmarks
1. |
Write a Python program to display the even numbers from 1to10 |
Answer» if num%2==0: PRINT (num) |
|