统计输出字符串中单词的个数
时间: 2023-09-01 20:07:33 浏览: 75
判断字符串中的单词个数
4星 · 用户满意度95%
可以用以下方法实现:
```python
string = "Hello world! This is a sample sentence."
words = string.split()
num_words = len(words)
print("Number of words:", num_words)
```
输出为:
```
Number of words: 8
```
首先,将输入字符串 `string` 使用 `split()` 函数分割成单个单词,存储在列表 `words` 中。然后,使用 `len()` 函数计算列表 `words` 的长度,即单词的个数。最后输出结果。
阅读全文