Python Demo
Python Code
Output
#An example of len() method List_words = ['Python', 'List', 'Length', 'Tutorial'] for word in List_words: print(word, "=", len(word)) print ("##################") print ("Length of the list = ", len(List_words))