统计英文文件中单词数python
时间: 2023-10-23 21:13:30 浏览: 98
基于Python实现的一个命令行文本计数统计程序,可统计纯英文txt文本中的字符数,单词数,句子数,Python文件行数
你好,关于统计英文文件中单词数的问题,可以使用Python语言来实现。以下是一个示例代码:
```python
import re
def count_words(filename):
with open(filename, 'r') as f:
text = f.read()
words = re.findall(r'\b\w+\b', text)
return len(words)
filename = 'example.txt'
num_words = count_words(filename)
print("There are", num_words, "words in the file.")
```
代码中使用了Python内置的正则表达式库re来匹配文本中的单词,最后返回单词数目。
阅读全文