gpt4 book ai didi

python-2.7 - 从 Pandas 数据框中替换括号

转载 作者:行者123 更新时间:2023-12-04 01:55:10 26 4
gpt4 key购买 nike

我使用了下面的代码

input_table = input_table.replace(to_replace='(', value="")

替换整个数据框中的括号。但令我惊讶的是,它不起作用。可能出了什么问题?

最佳答案

需要 regex=True 以使用转义 ( 替换子字符串,因为特殊的正则表达式值:

input_table = input_table.replace(to_replace='\(', value="", regex=True)

示例:

input_table = pd.DataFrame({
'A': ['(a','a','a','a(dd'],
'B': ['a','a(dd', 'ss(d','((']
})
print (input_table)
A B
0 (a a
1 a a(dd
2 a ss(d
3 a(dd ((

input_table = input_table.replace(to_replace='\(', value="", regex=True)
print (input_table)
A B
0 a a
1 a add
2 a ssd
3 add

关于python-2.7 - 从 Pandas 数据框中替换括号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51077024/

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