「Python」例外処理raise文のサンプル
環境
PyCharm 2021.3.3
Python 3.9.2
書式
raise 例外クラス名(引数の値)
raise 文を使って、特定の例外を発生させることができます。
使用例
# coding: utf-8
try:
a = 120/10
#raise文で強制的に例外を発生
raise Exception('例外のサンプル')
except Exception as e:
print(e)
# coding: utf-8
try:
a = 120/10
#raise文で強制的に例外を発生
raise Exception('例外のサンプル')
except Exception as e:
print(e)
# coding: utf-8 try: a = 120/10 #raise文で強制的に例外を発生 raise Exception('例外のサンプル') except Exception as e: print(e)
実行結果
例外のサンプル