Creating a list:

longest_word(aList) Write a Python function that takes a list of words and . returns. the longest one. It does NOT print anything. This algorithm is identical to the one above, except that you need to keep track of two things: (1) the length of the longest word you have seen so far, and (2) the longest word you have seen so far. ................
................