编写程序,给出一个英文句子,统计单词个数。
时间: 2023-06-05 19:48:04 浏览: 213
统计句子单词个数
4星 · 用户满意度95%
可以使用Python编写程序,先将英文句子按照空格分割成单词,然后统计单词个数即可。具体代码如下:
```python
sentence = "This is a sample sentence."
words = sentence.split() # 按照空格分割单词
num_words = len(words) # 统计单词个数
print("单词个数为:", num_words)
```
输出结果为:
```
单词个数为: 5
```
阅读全文