回答編集履歴

1

コードの間違いを修正

2018/11/27 02:10

投稿

KSwordOfHaste
KSwordOfHaste

スコア18394

test CHANGED
@@ -16,9 +16,9 @@
16
16
 
17
17
  except BaseException as e: # Pythonの全ての型の例外を補足する
18
18
 
19
- print('exception type=' + type(e))
19
+ print('type={}'.format(type(e)))
20
20
 
21
- print('exception =' + e)
21
+ print('error={}'.format(e))
22
22
 
23
23
  abort(500)
24
24