读取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)
相关推荐
周山至水数翠峰1 天前
.net 如何处理网页的Json请求?
服务器·json·.net
步、步、为营1 天前
C# 与.NET 日志变革:JSON 让程序“开口说清话”
c#·json·.net
chengpei1472 天前
chrome游览器JSON Formatter插件无效问题排查,FastJsonHttpMessageConverter导致Content-Type返回不正确
java·前端·chrome·spring boot·json
code_shenbing3 天前
基于 WPF 平台使用纯 C# 实现动态处理 json 字符串
c#·json·wpf
Bro_cat3 天前
深入浅出JSON:数据交换的轻量级解决方案
java·ajax·java-ee·json
mit6.8244 天前
What is Json?
c++·学习·json
小安同学iter5 天前
Web开发 -前端部分-HTML5新特性
javascript·css·正则表达式·json·css3·html5
我真不会起名字啊5 天前
“深入浅出”系列之C++:(10)nlohmann Json库
json
Watermelo6175 天前
使用JSONObject.getString()时报错:Cannot resolve method ‘getString‘ in ‘JSONObject‘,详解JSONObject三种库的用法
java·开发语言·spring boot·后端·java-ee·json·springboot
快乐觉主吖6 天前
使用Newtonsoft.Json插件,打包至Windows平台显示不支持
unity·json