代码示例:(标识:python_try_except_4)
python_try_except_4.py
#The finally block gets executed no matter if the try block raises any errors or not:

try:
  print(x)
except:
  print("Something went wrong")
finally:
  print("The 'try except' is finished")
运行结果: