mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
11 lines
234 B
Python
11 lines
234 B
Python
|
def longest_word(string_of_words):
|
||
|
words = string_of_words.split(' ')
|
||
|
|
||
|
result = (words[0], len(words[0]))
|
||
|
|
||
|
for word in words:
|
||
|
if len(word) >= result[1]:
|
||
|
result = (word, len(word))
|
||
|
|
||
|
return result[0]
|