我想将每行的类别名称保存在字符串中

时间:2019-01-08 07:19:39

标签: arrays json python-3.x

我已编写此代码来保存与以下内容有关的JSON文件中的数据:  列类别,并希望将该列的每一行保存在  变量url并打印出来。

import json
with open('data.json')as data:
for lines in data.readlines():
    json_dict = json.loads(lines)
    url=(json_dict["category"])
    print(url[0])
    print(url[1])

0 个答案:

没有答案