📜  python count total no of word in a text - Python (1)

📅  最后修改于: 2023-12-03 15:04:04.606000             🧑  作者: Mango

Python 统计文本中的单词数

本文介绍了如何使用 Python 统计文本中的单词数。

1. 读取文本

在进行文本分析之前,需要首先读取文本。可以使用 Python 的文件读取功能,将文本读入到 Python 中。

with open('text.txt', 'r') as f:
    text = f.read()
2. 分割单词

读取文本之后,需要将文本分割为单词。可以使用 Python 的 split() 函数将文本分割为单词列表。

words = text.split()
3. 统计单词数量

分割单词之后,可以使用 Python 的 len() 函数统计单词数量。

num_of_words = len(words)
4. 完整代码
with open('text.txt', 'r') as f:
    text = f.read()
    
words = text.split()
num_of_words = len(words)

print("总单词数:", num_of_words)
5. 结论

使用上述代码,可以轻松统计文本中的单词数。