统计字符串中单词个数
时间: 2023-08-18 16:05:04 浏览: 106
c语言 统计一个字符串中单词的个数.doc
以下是 Python 代码实现:
```python
def count_words(s):
"""
统计字符串中单词个数
"""
count = 0
for word in s.split():
count += 1
return count
```
这里使用 `split()` 方法来将字符串按空格分割成一个单词列表,然后通过遍历列表来统计单词个数。
阅读全文