python 使用 pandas 将 json 数据转换为 excel 数据

111.txt

{"11": 11, "22": 22}
{"11": 11, "33": 33}

脚本

import pandas as pd

df = pd.read_json("111.txt", lines=True)
df.to_excel("info.xlsx")

转换后结果

python 使用 pandas 将 json 数据转换为 excel 数据_第1张图片

你可能感兴趣的:(python,工作,python,pandas,json)