删除字符串中的标点符号

时间:2016-07-29 21:41:55

标签: python string split

我有一个字符串列表,我希望将其更改为小写并删除标点符号。我可以将它们更改为小写但无法删除标点符号。字符串示例:

s = 'He is the best doctor. I highly recommend him."

使用

slower = s.lower().split(" ")

我获得了

['he', 'is', 'the', 'best', 'doctor.', 'i', 'like', 'him.']

这很好,但我仍然希望从单词中删除标点符号。

这样做的简单方法是什么?谢谢!!

0 个答案:

没有答案