gpt4 book ai didi

python - 如何替换pandas数据框中的字符?

转载 作者:行者123 更新时间:2023-12-01 07:29:43 24 4
gpt4 key购买 nike

我正在尝试清理我拥有的一些数据。我想将 ) 替换为 dataframe 中包含 ) 的特定行中的空格。

例如 - 1948)

我已经识别出那些具有额外字符串字符 ) 的行。我尝试使用 str.replace 但它似乎不起作用。


movies['Year'].str[-1]==')'.replace(')','')

代码似乎可以运行,但不会清除数据。

最佳答案

如果 ')' 仅出现在最后,请使用 pandas.Series.str.rstrip :

import pandas as pd

s = pd.Series(['1)', '2', '3)', '4', '5)'])
s.str.rstrip(')')

输出:

0    1
1 2
2 3
3 4
4 5
dtype: object

关于python - 如何替换pandas数据框中的字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57266171/

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