InterviewSolution
Saved Bookmarks
| 1. |
Give the syntax for ‘for loop’? |
|
Answer» for counter_variable in sequence: statements – block 1 [else: # optional block statements – block 2] |
|