统计字符串中单词的个数
时间: 2024-03-24 13:32:49 浏览: 83
判断字符串中的单词个数
4星 · 用户满意度95%
以下是两种统计字符串中单词个数的方法:
方法一:使用Shell命令
```shell
echo "This is a test sentence." | wc -w
```
输出:4
方法二:使用Python
```python
string = "This is a test sentence."
word_list = string.split()
print(len(word_list))
```
输出:4
阅读全文