共计 397 个字符,预计需要花费 1 分钟才能阅读完成。
可以使用 json
库中的 loads
函数将 JSON 字符串转化为 Python 对象,然后使用 list()
函数将 Python 对象转化为数组。下面是一个示例:
import json
json_str = '[1, 2, 3, 4, 5]'
json_list = json.loads(json_str)
array = list(json_list)
print(array)
输出结果为:
[1, 2, 3, 4, 5]
你也可以直接使用 json
库中的 load
函数从文件中读取 JSON 数据,然后将其转化为数组。下面是一个示例:
import json
with open('data.json') as file:
json_list = json.load(file)
array = list(json_list)
print(array)
假设 data.json
文件中的内容为[1, 2, 3, 4, 5]
,输出结果为:
[1, 2, 3, 4, 5]
丸趣 TV 网 – 提供最优质的资源集合!
正文完