gpt4 book ai didi

python - 如果满足条件,则更改值,数据框

转载 作者:行者123 更新时间:2023-12-01 01:08:33 25 4
gpt4 key购买 nike

我有一列电话号码,某些列值带有“;”在开始时:

Phone
-------
890734687; 098766576565
890734687
;890734687
234873576; 987982346
;9088327427; 897234632

我最终需要的是:

Phone
-------
890734687; 098766576565
890734687
890734687
234873576; 987982346
9088327427; 897234632

我可以使用for循环吗?

for num in df['Phone']
if num[0] == ';'
# what next?

最佳答案

使用str.lstrip:

df.Phone = df.Phone.str.lstrip(';')

现在:

print(df)

是:

                     Phone
0 890734687; 098766576565
1 890734687
2 890734687
3 234873576; 987982346
4 9088327427; 897234632

关于python - 如果满足条件,则更改值,数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55094658/

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