我正在遍历数据框并尝试存储每个 id 的“总”列表。
数据框如下所示:
id total difference
1 29 3
1 21 2
2 39 0
2 22 9
到目前为止我尝试过的:
total_list=[]
for i, row in df.iterrows():
total_list.extend(df.total.loc[df.id==row.id].tolist())
print(total_list) # this never gets print
total_list 应该看起来像 [[29, 21], [39,22]]
慕沐林林
相关分类