gpt4 book ai didi

python - 多个树列表并保存在 pandas DataFrame 中

转载 作者:太空宇宙 更新时间:2023-11-04 08:28:19 25 4
gpt4 key购买 nike

我有 3 个列表,如下所示:

 list1 = [1,2]
list2 = [x,y]
list3 = [i,j,l]

我如何将它们组合起来并保存到 pandas 数据框中,如下数据框:

  list1  list2  list3
1 x i
1 x j
1 x l
1 y i
1 y j
1 y l
2 x i
2 x j
2 x l
2 y i
2 y j
2 y l

我在 Stackoverflow 上找不到任何类似的问题。

最佳答案

您可以使用:

import itertools
df_new=pd.DataFrame(list(itertools.product(list1,list2,list3)),\
columns=['list1','list2','list3'])
print(df_new)

list1 list2 list3
0 1 x i
1 1 x j
2 1 x l
3 1 y i
4 1 y j
5 1 y l
6 2 x i
7 2 x j
8 2 x l
9 2 y i
10 2 y j
11 2 y l

关于python - 多个树列表并保存在 pandas DataFrame 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54959747/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com