Code Fix

中級AttributeError: 'NoneType' object has no attribute の原因と直し方 › パターン1

AttributeError: 'NoneType' object has no attribute の原因と直し方

Noneに対してメソッドを呼び出したときに出るエラーです。

 1  result = _______
                ^
 2  print(result.upper())
Traceback (most recent call last): File "main.py", line 2, in <module> print(result.upper()) ^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'upper'

空欄を埋めて実行を通す

広告
広告スロット(未設定)

AttributeError: 'NoneType' object has no attribute の原因と直し方

関数が値を見つけられずNoneを返す場面や、辞書のgetでキーが無かった場合に起きやすいパターンです。

このエラーの解説と類題をまとめて見る →

広告
広告スロット(未設定)