1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pythonのKeyErrorを何とかする

Last updated at Posted at 2019-11-18

はじめに

Pythonを触っていて、

"KeyError: None"

というエラーが出た。原因と修正方法をメモ。(コメントでいただいた内容に修正しました。)

原因

foo['bar']と、barというキーを指定しているが、そのキーが存在していないと考えられる。

修正方法

タイプミスの可能性があるため、自分でキーを把握しているorプログラム内にキーが記述されている場合は見直す。
無い場合は、適切な位置に以下のコードを挿入する。

...
print(foo.keys())
...#ここでエラーが起こる

['bar']部分を適切に修正する。

1
1
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?