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