Takes a list of words and returns the length of the longest one

 list = ["Malay","Arnob","Liverpool"]

longest_list = max(list,key=len)

print(longest_list)

Comments