list indices must be integers or slices, not tuple是什么意思
时间: 2023-05-29 12:07:46 浏览: 1805
Python BeautifulSoup [解决方法] TypeError: list indices must be integers or slices, not str
5星 · 资源好评率100%
这是一个Python错误提示,意思是列表的索引必须是整数或切片,不能是元组。通常出现在代码中使用了元组作为列表的索引,而元组是不支持索引的。例如,使用my_list[(1,2)]来访问列表中的元素会触发这个错误。正确的做法是使用整数或切片来作为列表的索引。
阅读全文