gpt4 book ai didi

python-3.x - 如何将字符串添加到 Pandas DataFrame 列中的所有值

转载 作者:行者123 更新时间:2023-12-04 11:22:16 25 4
gpt4 key购买 nike

假设您有一个 DataFrame带柱子;

 col_1    col_2 
1 a
2 b
3 c
4 d
5 e

您将如何更改 col_2 的值这样,新值 = 当前值 + 'new'

最佳答案

使用 + :

df.col_2 = df.col_2 + 'new'
print (df)
col_1 col_2
0 1 anew
1 2 bnew
2 3 cnew
3 4 dnew
4 5 enew

感谢 hooy对于另一种解决方案:
df.col_2 += 'new'

assign :
df = df.assign(col_2 = df.col_2 + 'new')
print (df)
col_1 col_2
0 1 anew
1 2 bnew
2 3 cnew
3 4 dnew
4 5 enew

关于python-3.x - 如何将字符串添加到 Pandas DataFrame 列中的所有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42273937/

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