Computer Science, asked by ashusingla3387, 7 months ago

The longest_word function is used to compare 3 words. It should return the word with the most number of characters (and the first in the list when they have the same length).

Answers

Answered by chawlakriti699
0

Answer:

the longest word function is atomized and the first in the least then they have the same length

Answered by djkaps1707
5

Answer:

def longest_word(word1, word2, word3):

if len(word1) >= len(word2) and len(word1) >= len(word3):

 word = word1

elif len(word2) >= len(word1) and len(word2) >= len(word3):

 word = word2

else:

 word = word3

return(word)

print(longest_word("chair", "couch", "table"))

print(longest_word("bed", "bath", "beyond"))

print(longest_word("laptop", "notebook", "desktop"))

Explanation:

Similar questions