python统计所输入字符串中单词的个数
时间: 2023-04-15 09:03:06 浏览: 111
Python实现统计单词出现的个数
可以使用Python中的split()函数将字符串分割成单词,然后使用len()函数统计单词的个数。具体代码如下:
```
string = input("请输入字符串:")
words = string.split()
count = len(words)
print("单词个数为:", count)
```
阅读全文
Python实现统计单词出现的个数