用一个函数实现将一行字符串中最长的单词输出
时间: 2023-04-26 15:03:58 浏览: 104
查找字符串最长的单词
4星 · 用户满意度95%
可以使用以下函数实现将一行字符串中最长的单词输出:
```python
def longest_word(sentence):
words = sentence.split() # 将句子拆分成单词列表
longest = "" # 初始化最长单词为空字符串
for word in words:
if len(word) > len(longest): # 如果当前单词比最长单词长
longest = word # 更新最长单词
return longest # 返回最长单词
```
使用示例:
```python
sentence = "I love programming and artificial intelligence"
print(longest_word(sentence)) # 输出:programming
```
阅读全文