如何在Python中从字符串中删除标点符号?
删除字符串中所有标点符号的最快方法是使用str.translate()。您可以如下使用它-
示例
import strings = "string. With. Punctuation?"
print s.translate(None, string.punctuation)
输出结果
这将给我们输出-
string With Punctuation
示例
如果您想要一个更具可读性的解决方案,则可以显式遍历集合,并忽略循环中的所有标点,如下所示:
s = "string. With. Punctuation?"exclude = set(string.punctuation)
s = ''.join(ch for ch in s if ch not in exclude)
print s
输出结果
这将给我们输出-
string With Punctuation
以上是 如何在Python中从字符串中删除标点符号? 的全部内容, 来源链接: utcz.com/z/331468.html