统计字符串中的单词数python
时间: 2023-10-23 18:16:06 浏览: 154
基于Python实现的一个命令行文本计数统计程序,可统计纯英文txt文本中的字符数,单词数,句子数,Python文件行数
可以使用Python的字符串分割函数来实现统计字符串中的单词数。具体实现方法如下:
```python
def count_words(s):
"""
统计字符串中的单词数
"""
words = s.split() # 使用空格分割字符串
return len(words)
```
使用示例:
```python
s = "Hello world! This is a test string."
count = count_words(s)
print(count) # 输出:7
```
在这个例子中,我们使用空格作为分隔符将字符串分割成单词,然后使用Python内置的len函数计算单词数量。
阅读全文