用一个函数实现将一行字符串中最长的单词输出
时间: 2023-04-26 22:03:58 浏览: 101
可以使用以下函数实现将一行字符串中最长的单词输出:
```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
```
相关问题
用一个函数来实现将一行字符串中最长的单词输出
我们可以使用 Python 的 split() 函数将字符串分割为单词列表,然后使用 len() 函数计算每个单词的长度,最后使用 max() 函数获取最长的单词。代码如下:
```
def longest_word(sentence):
words = sentence.split()
longest = max(words, key=len)
return longest
```
使用这个函数,例如:
```
longest_word("The quick brown fox jumps over the lazy dog")
```
输出:'jumps'
C语言写一个函数将一行字符串中最长的单词输出
可以的,以下是一个示例代码:
```c
#include <stdio.h>
#include <string.h>
void print_longest_word(char *str) {
char *word_start = NULL;
char *longest_word_start = NULL;
int longest_word_len = ;
int word_len = ;
for (int i = ; i <= strlen(str); i++) {
if (str[i] == ' ' || str[i] == '\') {
if (word_start != NULL) {
word_len = i - (int)(word_start - str);
if (word_len > longest_word_len) {
longest_word_len = word_len;
longest_word_start = word_start;
}
word_start = NULL;
}
} else {
if (word_start == NULL) {
word_start = &str[i];
}
}
}
if (longest_word_start != NULL) {
for (int i = ; i < longest_word_len; i++) {
printf("%c", longest_word_start[i]);
}
printf("\n");
}
}
int main() {
char str[] = "This is a test string for the longest word function";
print_longest_word(str);
return ;
}
```
这个函数会输出输入字符串中最长的单词。如果有多个单词长度相同且都是最长的,函数会输出第一个。
阅读全文