実際に遭遇した例

Python

カテゴリー: エラー  閲覧数:385 配信日: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]


週間人気ページランキング / 8-8 → 8-14
順位 ページタイトル抜粋 アクセス数
1 Python用語 13
2026/8/15 5:05 更新