words = ['hello','sample,'word','about','hey','longes','mikeys']
# the code:
longestWord = max(words,key=len) # will get the longest word
length = len(longestWord) # will get the length of the longest word
long_word = [i for i in words if len(i) == length] # list comprehension thatt will get all the longest word in the list