找出已知字符串s中的最长单词
时间: 2024-05-06 08:18:57 浏览: 95
可以使用字符串的split()方法将字符串s拆分成一个单词列表,然后遍历列表找到最长的单词即可。
示例代码如下:
```python
s = "Hello world, this is a test string"
words = s.split() # 将字符串拆分成单词列表
longest_word = ""
for word in words:
if len(word) > len(longest_word):
longest_word = word
print("最长单词为:", longest_word)
```
输出结果为:
```
最长单词为: string
```
相关问题
编写程序找出已知字符串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
```
阅读全文