如何在json文件中添加列表和追加项目

时间:2019-10-20 14:17:40

标签: arrays json

“如何在json文件中追加列表并添加条目?”

我正在抓取网页并尝试在json文件中添加一个列表,但我无法理解逻辑。

[{“ cloth”:{“ brand_name”:“ Amina”,“ designer”:“ Designs by Amina”,“ title”:“ Gota on Pure Chiffon”}}, {“ cloth”:{“ brand_name”:“ Amsa的设计”,“ designer”:“ Amina的设计”,“ title”:“ Amina的设计”}}]

我想在json中创建此类文件

1 个答案:

答案 0 :(得分:0)

clothes_list=[]
for i in raw_data['cloth']:
   clothes_list.append(i)

这将返回一个列表,然后列表可以轻松转换为数据帧。

clothes=pd.DataFrame(clothes_list)

您并描述它。     clothes.describe(include =“ all”)