编写程序计算句子的平均词长:+ Enter+a+sentence:+It+was+deja+vu+all+over+again.+ Average+word+length:+3.4+++ 简单起
时间: 2023-11-13 12:02:51 浏览: 155
用函数计算单词的长度
编写程序计算句子的平均词长可以使用以下Python代码实现:
```python
sentence = input("Enter a sentence: ")
words = sentence.split()
total_length = sum(len(word) for word in words)
average_length = total_length / len(words)
print("Average word length:", round(average_length, 1))
```
运行程序后,输入一个句子,程序将会计算出该句子的平均词长并输出。
阅读全文