统计所输入字符串中单词的个数
时间: 2023-05-17 11:03:44 浏览: 120
好的,我可以回答这个问题。统计字符串中单词的个数可以通过以下代码实现:
```python
def count_words(string):
words = string.split()
return len(words)
```
这个函数会将输入的字符串按照空格分割成单词,并返回单词的个数。
相关问题
python统计所输入字符串中单词的个数
可以使用Python中的split()函数将字符串分割成单词,然后使用len()函数统计单词的个数。具体代码如下:
```
string = input("请输入字符串:")
words = string.split()
count = len(words)
print("单词个数为:", count)
```
python统计输入字符串中单词的个数
可以使用Python中的split()函数将输入字符串分割成单词列表,然后使用len()函数统计列表中单词的个数。具体代码如下:
```
input_str = input("请输入字符串:")
word_list = input_str.split()
word_count = len(word_list)
print("单词个数为:", word_count)
```
阅读全文