tuple indices must be integers or slices, not str
时间: 2023-11-28 21:45:41 浏览: 22
Python BeautifulSoup [解决方法] TypeError: list indices must be integers or slices, not str
5星 · 资源好评率100%
这个错误通常是由于尝试使用字符串作为元组的索引而导致的。元组的索引必须是整数或者切片,不能是字符串。这个错误通常发生在使用元组时出现了错误的索引方式。例如,如果有一个元组t,其中包含多个元素,你可以使用t来访问第一个元素,但是如果你使用t['key'],就会出现“tuple indices must be integers or slices, not str”的错误。如果你想使用字符串作为索引,你应该使用字典而不是元组。
阅读全文