for multi in json_file["shapes"]: TypeError: list indices must be integers or slices, not str
时间: 2023-08-25 20:18:38 浏览: 74
这个错误提示表明在对列表进行索引时使用了字符串作为索引,但是列表只接受整数或切片作为索引。这个错误通常发生在对json_file["shapes"]进行循环迭代时,可能是由于json_file["shapes"]不是一个列表而是一个字典导致的。为了解决这个问题,您可以检查一下json_file["shapes"]的数据类型,确保它是一个列表。如果不是一个列表,您可以尝试将其转换为列表类型,例如使用list()函数。这样就可以通过整数索引或切片来访问列表元素。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [TypeError: list indices must be integers or slices, not tuple](https://blog.csdn.net/m0_70484757/article/details/131177799)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文