InterviewSolution
Saved Bookmarks
| 1. |
How many times is the following loop executed? for a in range(100,10,-10):print a |
|
Answer» 9 times is the for loop executed. |
|