Advertisements
Advertisements
Question
Is the following Python code valid?
try:
# Do something
except:
# Do something
finally:
# Do something
Options
no, there is no such thing as finally
no, finally cannot be used with except
no, finally must come before except
yes
MCQ
Solution
no, finally cannot be used with except
shaalaa.com
Introduction of Exception Handling in Python
Is there an error in this question or solution?