def find_longest_word(word_list): longest_word = max(word_list, key=len) return longest_word
max(a_list, key=len)