# 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
# 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