実際に遭遇した例

Python

カテゴリー: エラー  閲覧数:396 配信日:2017-11-05 11:07


エラーメッセージ


Apacheログ
[error] [client 123.456.78.901] TypeError: 'dict_keys' object does not support indexing, referer

エラー発生箇所


▼index.py
lookup_key = item.attrib.keys()[0]


エラー修正内容


▼index.py
lookup_key = list(item.attrib.keys())[0]


週間人気ページランキング / 9-19 → 9-25
順位 ページタイトル抜粋 アクセス数
1 Python用語 10
2 モジュール カテゴリー 1
2026/9/26 5:05 更新