以下是Python文件中的单词统计工具,可用于统计一个文本文件中的单词数量:

import re

def word_count(file_path):

with open(file_path, 'r') as f:

text = f.read()

words = re.findall(r'\b\w+\b', text)

return len(words)

file_path = 'example.txt'

print(word_count(file_path))