CBSE Class 12 Computer Science
Question 29 of 30
Exception Handling — Question 4
Back to all questionsTrue
Reason — The order of exception handling in Python is as follows: first, the try block contains the code that may raise an exception. Then, the except block is used to handle specific types of exceptions that may occur within the try block. Finally, the finally block, if present, is executed whether an exception is raised or not.