写一个函数输入一行字符,将此字符串中最长的单词输出
时间: 2023-04-27 21:05:40 浏览: 123
可以使用以下函数来实现:
```python
def find_longest_word(sentence):
words = sentence.split() # 将句子分割成单词
longest_word = ""
for word in words:
if len(word) > len(longest_word):
longest_word = word
return longest_word
```
使用方法:
```python
sentence = "这是一个测试句子,其中最长的单词是'测试句子'"
longest_word = find_longest_word(sentence)
print(longest_word) # 输出:'测试句子'
```
阅读全文