编写python程序,给出一个英文句子,统计单词个数
时间: 2023-05-16 11:04:46 浏览: 331
好的,以下是 Python 代码:
```python
sentence = input("请输入一个英文句子:")
words = sentence.split()
print("单词个数为:", len(words))
```
你可以输入一个英文句子,程序会自动统计其中的单词个数并输出。
相关问题
python编写程序,给出一个英文句子,统计单词个数
可以使用Python中的split()函数将句子分割成单独的单词,然后使用len()函数计算单词数目,示例代码如下:
sentence = "This is a sample sentence."
word_list = sentence.split()
num_words = len(word_list)
print("The number of words in the sentence is:", num_words)
输出结果为:The number of words in the sentence is: 5
python编写程序,给出一个英文句子,统计单词个数。
可以使用split()方法将句子拆分成单词,然后利用len()函数统计单词个数。
示例代码如下:
```python
sentence = "This is a sample sentence for word count"
words = sentence.split()
word_count = len(words)
print("The number of words in the sentence is:", word_count)
```
输出结果为:
```
The number of words in the sentence is: 8
```
阅读全文