InterviewSolution
Saved Bookmarks
| 1. |
Write the while loop to print the series: 5,10,15,…100 |
|
Answer» i=5 while i <= 100: print i i = i + 5 |
|