读取json文件,json line格式、 json list格式

python 复制代码
import json
from tqdm import tqdm

# json line
with open(file_name, "r", encoding='utf-8') as f:
    lines = f.readlines()
    for line in tqdm(lines):
        json_line = json.loads(line)
        print(json_line)

# json list
with open(file_name, 'r', encoding='utf-8') as f:
    json_list = json.load(f)
    for json_line in tqdm(json_list):
        print(json_line)
相关推荐
如生命般费解的谜团8 小时前
LLM学习笔记(7)Scaled Dot-product Attention
人工智能·笔记·学习·语言模型·json
前端熊猫1 天前
json数据四大加载方式
json
( •̀∀•́ )9201 天前
如何使用 `global.json` 管理(切换) .NET SDK 版本
前端·json·.net
originalHSL2 天前
Load-Balanced-Online-OJ(负载均衡式在线OJ)
linux·c++·git·vscode·http·https·json
枫叶落雨2222 天前
JSONObject.parseObject(jsonString); 和JSON.parseObject(jsonString)区别!!!!!!
json
Mephisto.java2 天前
【大数据学习 | Spark-Core】详解分区个数
大数据·sql·oracle·spark·json·database
白萝卜弟弟2 天前
【MySQL】MySQL中的函数之JSON_ARRAY_INSERT
数据库·mysql·json
白萝卜弟弟2 天前
【MySQL】MySQL中的函数之JSON_ARRAY_APPEND
数据库·mysql·json
djk88884 天前
.net6.0(.net Core)读取 appsettings.json 配置文件
json·.net·.netcore
一条晒干的咸魚4 天前
【Web前端】创建我的第一个 Web 表单
服务器·前端·javascript·json·对象·表单