📅  最后修改于: 2023-12-03 15:04:04.606000             🧑  作者: Mango
本文介绍了如何使用 Python 统计文本中的单词数。
在进行文本分析之前,需要首先读取文本。可以使用 Python 的文件读取功能,将文本读入到 Python 中。
with open('text.txt', 'r') as f:
text = f.read()
读取文本之后,需要将文本分割为单词。可以使用 Python 的 split() 函数将文本分割为单词列表。
words = text.split()
分割单词之后,可以使用 Python 的 len() 函数统计单词数量。
num_of_words = len(words)
with open('text.txt', 'r') as f:
text = f.read()
words = text.split()
num_of_words = len(words)
print("总单词数:", num_of_words)
使用上述代码,可以轻松统计文本中的单词数。