用Python写一个程序,找出已知字符串s中的最长单词
时间: 2023-05-21 12:03:00 浏览: 335
可以使用以下代码实现:
```python
s = "This is a sample string"
words = s.split()
longest_word = max(words, key=len)
print("The longest word in the string is:", longest_word)
```
输出结果为:
```
The longest word in the string is: sample
```
这个程序将字符串s分割成单词列表,然后使用max函数找出列表中最长的单词。
相关问题
编写程序找出已知字符串s中的最长单词
非常感谢您的提问!以下是我为您准备的回答:
要找出已知字符串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按照空格分割成单词,然后遍历每个单词,找出其中最长的一个单词并返回。如果有多个单词长度相同,函数将返回第一个找到的最长单词。
希望这个回答能够帮助您解决问题!
编写程序找出已知字符串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 = "This is a sample sentence to find the longest word"
longest_word = find_longest_word(s)
print("The longest word in the string is:", longest_word)
```
输出结果为:
```
The longest word in the string is: sentence
```
阅读全文