用一个函数来实现将一行字符串中最长的单词输出
时间: 2023-03-19 14:26:31 浏览: 115
查找字符串最长的单词
4星 · 用户满意度95%
我们可以使用 Python 的 split() 函数将字符串分割为单词列表,然后使用 len() 函数计算每个单词的长度,最后使用 max() 函数获取最长的单词。代码如下:
```
def longest_word(sentence):
words = sentence.split()
longest = max(words, key=len)
return longest
```
使用这个函数,例如:
```
longest_word("The quick brown fox jumps over the lazy dog")
```
输出:'jumps'
阅读全文