Pythonでよく出るエラーメッセージとその解決方法

Pythonでよく出るエラーメッセージとその解決方法をまとめてみました。


TypeError: can only concatenate str (not “int”) to str

error1.py
  1. '1' + 1
実行
  1. python error1.py
  2. Traceback (most recent call last):
  3. File "error1.py", line 1, in
  4. '1' + 1
  5. TypeError: can only concatenate str (not "int") to str

strとintは結合できません。

修正版
  1. '1' + '1'

TypeError: unsupported operand type(s) for +: ‘int’ and ‘str’

error2.py
  1. 1 + '1'
実行
  1. python error2.py
  2. Traceback (most recent call last):
  3. File "error2.py", line 1, in
  4. 1 + '1'
  5. TypeError: unsupported operand type(s) for +: 'int' and 'str'

intとstrの結合はできません。

修正版
  1. 1 + 1

IndentationError: unexpected indent

error3.py
  1. num = 1
  2. print(num)
実行
  1. python error3.py
  2. File "error3.py", line 2
  3. print(num)
  4. ^
  5. IndentationError: unexpected indent

予期しないインデントが存在しています。

修正版
  1. num = 1
  2. print(num)

SyntaxError: EOL while scanning string literal

error4.py
  1. print('aaa)
実行
  1. python error4.py
  2. File "error4.py", line 1
  3. print('aaa)
  4. ^
  5. SyntaxError: EOL while scanning string literal

‘や”が閉じられていません。

修正版
  1. print('aaa')

AttributeError: ‘int’ object has no attribute ‘append’

error5.py
  1. mylist = 1
  2. mylist.append(2)
実行
  1. python error5.py
  2. Traceback (most recent call last):
  3. File "error5.py", line 2, in
  4. mylist.append(2)
  5. AttributeError: 'int' object has no attribute 'append'

「’int’ object」 = 「mylist」はappend属性を持っていません。

修正版
  1. mylist = [1]
  2. mylist.append(2)

TypeError: myfunc() missing 1 required positional argument: ‘arg2’

error6.py
  1. def myfunc(arg1, arg2):
  2. print(arg1, arg2)
  3.  
  4. myfunc(1)
実行
  1. python error6.py
  2. Traceback (most recent call last):
  3. File "error6.py", line 4, in
  4. myfunc(1)
  5. TypeError: myfunc() missing 1 required positional argument: 'arg2'

必要な引数’arg2’が指定されていません。

修正版
  1. def myfunc(arg1, arg2):
  2. print(arg1, arg2)
  3.  
  4. myfunc(1, 2)

TypeError: myfunc() takes 2 positional arguments but 3 were given

error7.py
  1. def myfunc(arg1, arg2):
  2. print(arg1, arg2)
  3.  
  4. myfunc(1, 2, 3)
実行
  1. python error7.py
  2. Traceback (most recent call last):
  3. File "error7.py", line 4, in
  4. myfunc(1, 2, 3)
  5. TypeError: myfunc() takes 2 positional arguments but 3 were given

引数2つの関数に3つの引数を与えています。

修正版
  1. def myfunc(arg1, arg2):
  2. print(arg1, arg2)
  3.  
  4. myfunc(1, 2)

IndexError: list index out of range

error8.py
  1. mylist = [1, 2, 3]
  2. print(mylist[3])
実行
  1. python error8.py
  2. Traceback (most recent call last):
  3. File "error8.py", line 2, in
  4. print(mylist[3])
  5. IndexError: list index out of range

指定したindexは存在しません。

修正版
  1. mylist = [1, 2, 3]
  2. print(mylist[2])

KeyError: ‘d’

error9.py
  1. mydict = {'a': 1, 'b': 2, 'c': 3}
  2. print(mydict['d'])
実行
  1. python error9.py
  2. Traceback (most recent call last):
  3. File "error9.py", line 2, in
  4. print(mydict['d'])
  5. KeyError: 'd'

指定したキーは存在しません。

修正版
  1. mydict = {'a': 1, 'b': 2, 'c': 3}
  2. print(mydict['c'])

 
 

コメントする

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です