pandas去除标点符号
时间: 2023-07-09 15:52:26 浏览: 158
pandas中去除指定字符的实例
你可以使用 Python 的 string 模块中的 punctuation 常量来去除标点符号,然后使用 pandas 库的 str.replace() 方法来替换标点符号为空格或其他符号。
以下是一个示例代码:
```python
import string
import pandas as pd
# 创建示例数据
data = pd.DataFrame({'text': ['Hello, world!', 'How are you?', 'I am fine.']})
# 去除标点符号
data['text'] = data['text'].str.replace('[{}]'.format(string.punctuation), '')
# 打印结果
print(data)
```
输出结果为:
```
text
0 Hello world
1 How are you
2 I am fine
```
阅读全文