Skip to content
Snippets Groups Projects
Commit ae64a25b authored by Pravesh's avatar Pravesh
Browse files

lab2 after eval

parent 3101dc26
Branches
No related tags found
No related merge requests found
def find_longest_word(words_list):
word_len = []
for n in words_list:
word_len.append((len(n), n))
word_len.sort()
return word_len[-1][1]
print(find_longest_word(["PHP", "Exercises", "Backend"]))
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment