Python 去除中文标点 获取链接 Facebook X Pinterest 电子邮件 其他应用 二月 04, 2018 import re s = "好多标点,。!?【】" punctuation = "[|•·゜:》《\[\]\-\d+\s+\.\!\/_,$%^*(+\"\')]+|[+——()?【】“”!,。?、~@#¥%……&*()]+" print(re.sub(punctuation, "", s)) 阅读全文