Correct way to handle exceptions in Python

Question:
What is the correct way to handle exceptions in Python?

  1. try...except
  2. try...catch
  3. try...finally
  4. try...error
Answer:
A - is the correct answer