自分が遭遇したエラーをメモっていく
こちらの記事も参考に
IndentationError: expected an indented block
インデントがなされてないエラー
UnboundLocalError: local variable ‘変数名’ referenced before assignment
ローカル、グローバル変数の違いによるエラー
こちらの記事を参考に
AttributeError: can’t set attribute
値を代入できないエラー
タプル型の数値に何か足し込んだり変更しようとするとこのようなエラーとなる
TypeError: ‘module’ object is not callable
そんなモジュールのオブジェクトはねぇぞと言われてる
よくあるのが
import datetime
と
from datetime import datetime
の違いでdatetime()を使うときに上記のエラーが出る
import datetimeだとdatetime.datetime()と書かないとだめや
コメント