From ce2af6665d9228da293739943dca328990404b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=BB=E6=AE=B7=E6=9D=B0?= <1583091881@qq.com> Date: Mon, 20 Jun 2022 13:12:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20'app/wordfreqCMD.py'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/wordfreqCMD.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/wordfreqCMD.py b/app/wordfreqCMD.py index c7c90fa..c4cfc2f 100644 --- a/app/wordfreqCMD.py +++ b/app/wordfreqCMD.py @@ -40,12 +40,12 @@ def file2str(fname):#文件转字符 def remove_punctuation(s): # 这里是s是形参 (parameter)。函数被调用时才给s赋值。 - special_characters = '_©~=+[]*&$%^@.,?!:;#()"“”—‘’' #把里面的字符都去掉 + '''special_characters = '_©~=+[]*&$%^@.,?!:;#()"“”—‘’' #把里面的字符都去掉 for c in special_characters: s = s.replace(c, ' ') # 防止出现把 apple,apple 移掉逗号后变成 appleapple 情况 - s = s.replace('--', ' ') - '''cop = re.compile("[^a-z^A-Z^\\']")#通过正则表达式保留英文字符和-、'两个特殊字符 - s=cop.sub(' ' , s)''' + s = s.replace('--', ' ')''' + cop = re.compile("[^a-z^A-Z^\\']")#通过正则表达式保留英文字符和-、'两个特殊字符 + s=cop.sub(' ' , s) s = s.strip() # 去除前后的空格 #s=keep_need_punctuation(s,'-') s=keep_need_punctuation(s,'\'')