JSON:json.load和json.loads

呼延哲
2023-12-01

data示例为

123
234
2342
2342

1. json.load

用来读取文件,直接打开文件读取文件信息

f=open('data.txt')
json.load(f)

2.json.loads

逐行读取打开的文件

path='data.txt'
import json
result=[json.loads(line) for line in open(path)]

结果为

In [21]:result
Out[21]: [123, 234, 2342, 2342]


 类似资料: