统计文本中单词数python
时间: 2023-10-23 08:37:39 浏览: 105
统计一行文本的单词个数Python代码
可以使用Python中的split()函数和len()函数来统计文本中单词的数量。具体实现代码如下:
```python
text = "Hello world! This is a sample text for word count."
word_count = len(text.split())
print("The number of words in the text is:", word_count)
```
输出结果为:
```
The number of words in the text is: 10
```
其中,split()函数将文本按照空格分割成单词的列表,len()函数统计单词列表的长度即为单词数。
阅读全文