Can one block of except statements handle multiple exception? b) yes, like except c) no d) none of the mentioned

Can one block of except statements handle multiple exception? b) yes, like except c) no d) none of the mentioned Correct Answer yes, like except TypeError, SyntaxError

Each type of exception can be specified directly. There is no need to put it in a list.

Related Questions

Can one block of except statements handle multiple exception?