替换英文标点符号
from string import punctuation print(punctuation) str1='我,是.中…国…人 —我—爱"祖国"和人民!;' for a in punctuation: str1=str1.replace(a,'') print(str1)
替换中文标点符号
from zhon.hanzi import punctuation str2="我,是。中…国…人 —我—爱“祖国”和人民‘’!;" for a in punctuation: str2=str2.replace(a,'') print(str2)
输出结果:
我是中…国…人 —我—爱祖国和人民 我是中国人 我爱祖国和人民
评论