python统计输入字符串中单词个数
时间: 2023-04-24 21:01:28 浏览: 139
zifuchuan.rar_统计 串中 单词 个数
可以使用Python中的split()函数将输入字符串分割成单词,然后使用len()函数统计单词个数。具体代码如下:
```python
input_str = input("请输入字符串:")
word_list = input_str.split() # 使用split()函数分割字符串
word_count = len(word_list) # 统计单词个数
print("单词个数为:", word_count)
```
注意,这里默认以空格作为单词的分隔符,如果需要使用其他分隔符,可以在split()函数中指定。
阅读全文