Write a function countVowels(WORDS) in Python, that takes the dictionary, WORDS as an argument and displays the words (in lowercase) that have more than 2 vowels in them.
For example, Consider the following dictionary
WORDS={1:"Apple",2:"Orange",3:"Banana",4:"Grape",5:"Kiwi"}
The output should be:
apple
orange
banana
grape
Answer:
Answer by student
Detailed answer by teachoo
The rest of the post is locked. Join Teachoo Black to see the full post.