Saved Bookmarks
| 1. |
When will the else part of try-except-else be executed?(a) always(b) when an exception occurs(c) when no exception occurs(d) when an exception occurs in to except block |
|
Answer» Right answer is (c) when no exception occurs Best explanation: The else part is executed when no exception occurs. |
|