How will I count the vowels of each string element in my list?
list = ['lola', 'anna','mary']
count = 0
for w in list:
if(i=='a' or i=='e' or i=='i' or i=='o' or i=='u' or i=='A' or i=='E' or i=='I' or i=='O' or i=='U'):
count=count+1
print count