if(t['basic']['location']=="遂宁"): TypeError: string indices must be integers
时间: 2023-05-18 19:02:48 浏览: 199
Python BeautifulSoup [解决方法] TypeError: list indices must be integers or slices, not str
这是一个 Python 的错误提示,意思是字符串的索引必须是整数类型。在这个例子中,t['basic']['location'] 的类型应该是字符串,但是它被当作了一个字典来使用,所以出现了这个错误。可能需要检查一下代码中的数据类型和数据结构是否正确。
阅读全文