Python:使列表中的每个元素成为现有Dataframe中的新列

问题描述 投票:0回答:1

我有一个现有的样本数据框(见下文)。

A   B
as  2
df  32
fj  1

我还有两个样本列表:

list_1 = ['234', '341', '482']
list_2 = ['111', '2223', '8908']

我想用我的数据帧连接我的两个列表,以便列表中的每个元素都是一列。

期望的输出:

A   B   234   341   482   111   2223   8908
as  2
df  32
fj  1

我已经搜索谷歌如何做到这一点,但找不到任何具体的东西。

python dataframe element concat
1个回答
0
投票

使用assign函数:

df = pd.DataFrame([
    ['as', 2],
    ['df', 32],
    ['fj', 1]
])
list_1 = ['234', '341', '482']
list_2 = ['111', '2223', '8908']
df
    0   1
0   as  2
1   df  32
2   fj  1

df = df.assign(**{k: 0 for k in list_1 + list_2})
df

    0   1   111     2223    234     341     482     8908
0   as  2   0       0       0       0       0       0
1   df  32  0       0       0       0       0       0
2   fj  1   0       0       0       0       0       0
© www.soinside.com 2019 - 2024. All rights reserved.