统计英文句子单词的个数代码
时间: 2023-07-02 19:17:37 浏览: 205
统计句子单词个数
以下是一个Python代码示例,用于统计英文句子中单词的个数:
```python
def count_words(sentence):
"""
统计英文句子中单词的个数
"""
words = sentence.split() # 根据空格分割单词
return len(words)
# 示例用法
s = "This is a sample sentence."
count = count_words(s)
print("单词个数:", count)
```
输出:
```
单词个数: 5
```
这个函数首先使用字符串的 `split()` 方法将句子分割成单词,然后返回单词列表的长度,即为单词的个数。
阅读全文