1、一个数组,有很多个字典
长这样:
data_list=[{'Type1':114,'Type2':514},{'Type1':1919,'Type2':810}]
一般json获取的数据,就可能会长成这个样子,问题不大
可以直接df一下:
import pandas as pd
for i in datas:标签:摸鱼,哈哈,pd,8.17,Type1,datas,Type2 From: https://www.cnblogs.com/AKsnoopy/p/16594596.html
i['brand']='百丽'
print(i)
T=pd.DataFrame(datas)