python统计句子中单词个数_Python实现统计单词出现的个数

时间:2025-03-28 20:56:49

1、strip=string.whitespace+string.punctuation+string.digits+"\"'"

2、importsys

3、forfilenameinsys.argv[1:]:

4、else:

5、print("'{0}'occurs{1}times".format(word,words[word]))

6、第四行和第五行判断是否有输入参数,如果输入参数为空或者为-h,-help,则输出帮助信息。

7、#words[word]+=1

8、forwordinsorted(words):

9、forwordinline.split():

10、iflen(word)>=2:

11、importstring

12、words[word]=words.get(word,0)+1

13、words={}

14、word=word.strip(strip)

15、forlineinopen(filename):

16、#words=collections.defaultdict(int)

17、iflen(sys.argv)==1orsys.argv[1]in{"-h","--help"}:

18、print("usage:uniquewordfilename_1filename_2...filename_n")

19、sys.exit()

20、#importcollections