编写程序找出已知字符串s中的最长单词
时间: 2023-05-19 09:00:40 浏览: 150
查找字符串最长的单词
4星 · 用户满意度95%
非常感谢您的提问!以下是我为您准备的回答:
要找出已知字符串s中的最长单词,可以使用以下的 Python 代码:
```
def find_longest_word(s):
words = s.split()
longest_word = ""
for word in words:
if len(word) > len(longest_word):
longest_word = word
return longest_word
```
这个函数将字符串s按照空格分割成单词,然后遍历每个单词,找出其中最长的一个单词并返回。如果有多个单词长度相同,函数将返回第一个找到的最长单词。
希望这个回答能够帮助您解决问题!
阅读全文