{"errcode":10060023,"errmsg":"发货信息未更新}获取errcode
时间: 2023-11-21 21:58:41 浏览: 139
获取信息代码
可以使用Python中的json库来解析JSON格式的数据,并获取其中的errcode字段。具体实现如下所示:
```python
import json
# 假设返回的JSON数据为response
response = '{"errcode":10060023,"errmsg":"发货信息未更新"}'
# 解析JSON数据
data = json.loads(response)
# 获取errcode字段
errcode = data['errcode']
# 输出errcode
print(errcode) # 输出:10060023
```
阅读全文