TypeError: string indices must be integers, not 'str'依旧报出该错误
时间: 2023-12-21 20:30:59 浏览: 191
详解Python中的编码问题(encoding与decode、str与bytes)
5星 · 资源好评率100%
```python
import json
# 假设login()函数返回的是json格式的数据
result = login()
# 使用json.loads()将json格式转换为Python对象
data = json.loads(result)
# 确保对数据进行正确的索引操作
# 例如,如果data是一个字典,使用data['key']来获取值
# 如果data是一个列表,使用data[index]来获取元素
```
阅读全文