python将json数组转化为列表
时间: 2023-08-14 08:06:16 浏览: 335
JsonUitl(一 个json转成list的简单通用工具类)
要将 JSON 数组转换为 Python 列表,你可以使用内置的 `json` 模块来实现。下面是一个示例代码:
```python
import json
# 假设你有一个 JSON 数组的字符串
json_str = '[1, 2, 3, 4, 5]'
# 使用 json.loads() 方法将 JSON 字符串解析为 Python 对象
json_list = json.loads(json_str)
# 现在,json_list 就是一个 Python 列表
print(json_list)
```
这将输出:`[1, 2, 3, 4, 5]`,其中 `json_list` 是一个包含 JSON 数组元素的 Python 列表。
阅读全文