python对多个json对象的json文件读取
参考博客:https://blog.csdn.net/wkdami/article/details/82986157
with open(data_path, 'r', encoding='utf-8') as f:
for item in jsonlines.Reader(f):
## item是按行读取的一个json对象
print(item)
python写入文件
## a 表示不覆盖原始的文件,在文件末尾进行写入
## w 表示写入的时候覆盖原始文件
dict_text = {'text': 'Hello World!', 'language': 'Python'}
with open("text.txt", "a", encoding='utf-8') as f:
for key in dict_text:
f.write(key + ':' + str(dict_text[key]) + '\n')
f.write('\n')