摘要: # python 去除字符串的标点符号 punctuation = '!,;:?"\'、,;' def removePunctuation(text): text = re.sub(r'[{}]+'.format(punctuation),' ',text) return text.strip() 阅读全文
posted @ 2020-05-12 14:56 BruceLong 阅读(13807) 评论(0) 推荐(1) 编辑