MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following code? def a(): try: f(x, 4) finally: print('after f') print('after f?') a() |
| A. | No output |
| B. | after f? |
| C. | error |
| D. | after f |
| Answer» D. after f | |