Q. Which of the following is the correct syntax for handling exceptions in Python?
β
Correct Answer: (A)
try: except: finally:
Explanation: The correct syntax for exception handling in Python is 'try: except: finally:'.