Which of the following is the correct way to format a try block in Python?

try:

# code that may raise an exception
except Exception as e:
# handle the exception