try_except_test.py 80 B

1234
  1. try:
  2. raise Exception('something went wrong')
  3. except Exception as e:
  4. print(e)