Vidyalelo
Python · Q8

Exception Handling in Python

Programming · Python · question 8

Q8

Can one block of except statements handle multiple exception?

A.
yes, like except TypeError, SyntaxError [,...]
Answer
B.
yes, like except [TypeError, SyntaxError]
C.
no
D.
none of the mentioned

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board