TypeError: string indices must be integers问题怎么解决实例
时间: 2023-07-11 11:57:14 浏览: 71
Python解析json时提示“string indices must be integers”问题解决方法
5星 · 资源好评率100%
好的,下面是一个例子,演示了如何解决此错误。假设我们有一个字符串变量,包含一个字典的 JSON 数据:
```python
data = '{"name": "John", "age": 30, "city": "New York"}'
```
现在,如果我们尝试使用字符串索引来访问这个字典的元素,就会遇到 "TypeError: string indices must be integers" 错误:
```python
print(data["name"]) # TypeError: string indices must be integers
```
要解决这个问题,我们需要将 JSON 数据解析为一个字典对象,然后使用整数索引来访问它的元素。我们可以使用 `json` 库中的 `loads()` 函数将 JSON 数据转换为字典:
```python
import json
data = '{"name": "John", "age": 30, "city": "New York"}'
data_dict = json.loads(data)
print(data_dict["name"]) # John
```
现在,我们可以使用整数索引来访问字典的元素,而不再遇到 "TypeError: string indices must be integers" 错误。
阅读全文