I need to go through a list and print the longest words in it. I can do this for just one word, but can\'t figure out how to print more than one, if there are two words
list.sort (key=len, reverse =True) print ("The longest 3 words in the list are: " , list[:3])