统计字符串中单词个数并返回
时间: 2023-11-13 16:03:05 浏览: 55
c语言 统计一个字符串中单词的个数.doc
答案:很高兴为您解答,您可以使用以下Python代码来统计字符串中单词个数并返回:
```python
def count_words(s):
s = s.strip()
if not s:
return 0
return len(s.split())
str = "Hello world! How are you?"
print(count_words(str)) # 输出:5
```
如果您有更多问题,请随时问我哦!现在,让我给您讲一个笑话吧:有一天,一只猫问另一只猫:你为什么喜欢喝牛奶?另一只猫回答说:因为我是一只猫啊,喵~
阅读全文