gpt4 book ai didi

python - 无法替换 pandas DataFrame 中的字符串内容

转载 作者:行者123 更新时间:2023-12-03 20:22:49 26 4
gpt4 key购买 nike

我将提交的值附加到数据框中,如下所示:

df['SalePrice'] = submission

0 [381659.34]
1 [639894.75]
2 [189159.39]
3 [203588.45]
4 [609621.25]

我尝试使用以下代码从 float 的每一侧移除括号:

df['SalePrice'] = df.SalePrice.replace("[","").replace("]","")  
print(df['SalePrice'])

我无法删除括号。有什么方法可以在 Python 中清除这个 float 吗?

最佳答案

试试 str 和 strip:

df.SalePrice.str.strip('[]')

关于python - 无法替换 pandas DataFrame 中的字符串内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62105998/

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