Python删除标点符号代码
时间: 2023-05-24 09:05:46 浏览: 107
python3去掉string中的标点符号方法
以下是Python删除标点符号的代码:
```python
import string
# 定义需要删除的标点符号
punctuation = string.punctuation
# 定义需要删除标点符号的文本
text = "Hello, World! This is some text."
# 循环遍历需要删除的标点符号
for p in punctuation:
# 如果标点符号在文本中出现
if p in text:
# 将标点符号替换为空字符串
text = text.replace(p, "")
print(text)
```
输出:
```
Hello World This is some text
```
该代码首先导入Python中的string模块,使用string.punctuation变量来存储标点符号,然后使用replace()函数将文本中的标点符号替换为空字符串。最后输出没有标点符号的文本。
阅读全文