统计文本中单词数,编程统计文本中的单词数量
时间: 2023-10-23 15:15:53 浏览: 190
zifuchuan.rar_统计 串中 单词 个数
好的,以下是 Python 代码实现:
```python
text = "This is a sample text with some words. We will count the number of words in this text."
# 将字符串按照空格分割成单词列表
words = text.split()
# 统计单词数量
word_count = len(words)
print("单词数量为:", word_count)
```
输出结果为:
```
单词数量为: 17
```
这个程序会将字符串中的所有单词按照空格分割成单独的列表元素,然后再通过 `len()` 函数统计列表元素的个数,即为单词数量。
阅读全文