1. ホーム
  2. python

[解決済み] Pythonで例外を表示するには?

2022-03-17 16:32:39

質問

try:
    something here
except:
    print('the whatever error occurred.')

のエラー/例外を表示するにはどうすればよいですか? except: ブロックを作成することはできますか?

どのように解決するのですか?

Python 2.6以降とPython 3.xが対象です。

except Exception as e: print(e)

Python 2.5以前の場合、使用してください。

except Exception,e: print str(e)