MCQOPTIONS
Saved Bookmarks
| 1. |
Can one block of except statements handle multiple exception? |
| A. | yes, like except TypeError, SyntaxError [,…] |
| B. | yes, like except [TypeError, SyntaxError] |
| C. | no |
| D. | none of the mentioned |
| Answer» B. yes, like except [TypeError, SyntaxError] | |