Python输出英文英本中的最长单词和最短单词
时间: 2024-02-03 19:13:29 浏览: 249
1143_最长最短单词.cpp
可以使用以下代码实现:
```python
text = "Python is a high-level programming language designed for ease of use and readability."
words = text.split() # 将文本按空格分割成单词列表
longest_word = max(words, key=len) # 找到最长的单词
shortest_word = min(words, key=len) # 找到最短的单词
print("Longest word:", longest_word)
print("Shortest word:", shortest_word)
```
输出结果为:
```
Longest word: programming
Shortest word: a
```
注意,这里假设英文文本中的单词是由空格分割的。如果文本中还有其他标点符号,需要进行额外的处理。
阅读全文