菜鸡啄食,关于 python 数据文件格式转换与存储 自我学习
要求(函数名必须是convert,HDF5数据文件key取任意值推荐data,补充convert函数 读取json文件前1000行并存储到hdf5数据文件user_study.h5)
import pandas as pd
import json
def convert(file):
files=open(file)
filedata=files.read()
jsdata=json.loads(filedata)[:1000]
dfs=pd.DataFrame(jsdata)
dfs.to_hdf("user_study.h5",key="data")
convert("users_data.json")