我有一个字符串列表,我希望将其更改为小写并删除标点符号。我可以将它们更改为小写但无法删除标点符号。字符串示例:
s = 'He is the best doctor. I highly recommend him."
使用
slower = s.lower().split(" ")
我获得了
['he', 'is', 'the', 'best', 'doctor.', 'i', 'like', 'him.']
这很好,但我仍然希望从单词中删除标点符号。
这样做的简单方法是什么?谢谢!!