python 统计单词个数---不去重 2023-01-31 00:01:46 统计 单词 个数 需求: 统计一篇完全由英文构成的文章中的单词的个数分析:需要判断什么是单词,并统计判断为单词的元素的个数需要: python 正则表达式 简单例子:import re pattern = re.compile(r'\w+') pattern.match('hello ,world') Words = pattern.findall('hello hello world') len(words) 相关文章