12. Name the function/method required to
12. Name the function/method required to Read More »
# Code l = [‘No’, ‘country’, ‘has’, ‘ever’, ‘won’, ‘a’, ‘war’] c = 0 for word in l: c += len(word) print(‘Mean length of the words in the list is :’, c/len(l)) # len(l) gives number of words in the list