前提・実現したいこと
Jupyter notebook上で例外処理でのsys.exit()が実行できません。
Pythonを独習中であり、初心者です。ソースコードも初心者用の本に書いてあったもので、丸まる同じもの書いたものの初めて見るエラーが出ており困惑しております。
発生している問題・エラーメッセージ
点数を入力してくださいaa ERROR:root:Internal Python error in the inspect module. Below is the traceback from this internal error. 数値を入力してください Traceback (most recent call last): File "<ipython-input-22-d3b323a37515>", line 5, in <module> score = int(input("点数を入力してください")) ValueError: invalid literal for int() with base 10: 'aa' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\16ss037\anaconda3\lib\site-packages\IPython\core\interactiveshell.py", line 3331, in run_code exec(code_obj, self.user_global_ns, self.user_ns) File "<ipython-input-22-d3b323a37515>", line 9, in <module> sys.exit() SystemExit During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\16ss037\anaconda3\lib\site-packages\IPython\core\ultratb.py", line 1151, in get_records return _fixed_getinnerframes(etb, number_of_lines_of_context, tb_offset) File "C:\Users\16ss037\anaconda3\lib\site-packages\IPython\core\ultratb.py", line 319, in wrapped return f(*args, **kwargs) File "C:\Users\16ss037\anaconda3\lib\site-packages\IPython\core\ultratb.py", line 353, in _fixed_getinnerframes records = fix_frame_records_filenames(inspect.getinnerframes(etb, context)) File "C:\Users\16ss037\anaconda3\lib\inspect.py", line 1502, in getinnerframes frameinfo = (tb.tb_frame,) + getframeinfo(tb, context) AttributeError: 'tuple' object has no attribute 'tb_frame' An exception has occurred, use %tb to see the full traceback. --------------------------------------------------------------------------- During handling of the above exception, another exception occurred: SystemExit ### 該当のソースコード ```python import sys try: score = int(input("点数を入力してください")) except: print("数値を入力してください") sys.exit() if score >= 80: print("合格です") else: print("不合格です")
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
コードは「コードの挿入」で記入してください。(インデントが判るようにしてください)
あなたの回答
tips
プレビュー