list indices must be integers or slices, not str什么意思
时间: 2023-07-02 08:20:43 浏览: 67
Python BeautifulSoup [解决方法] TypeError: list indices must be integers or slices, not str
5星 · 资源好评率100%
这个错误是因为你使用了字符串作为列表的索引,而列表的索引只能是整数或切片。例如,如果你有一个列表a=['apple', 'banana', 'orange'],那么a[0]是合法的,返回值是'apple',但是a['banana']就会出现这个错误。你需要使用正确的类型作为索引,才能成功访问列表中的元素。
阅读全文