For this question: Download the list of words here: https://tigerweb.towson.edu/
ID: 3842649 • Letter: F
Question
For this question: Download the list of words here: https://tigerweb.towson.edu/aconover/small_dictionary.txt
Write a single Perl or Python program to count and display the number of occurrences of words which contain 4 consecutive vowels. (Vowels include a,e,i,o,u,y). The input should be readable from a "input pipe" (as in <cat or type> somefile.txt | <perl or python>program_name). Note that the input just has one word on each line:
Fake Example input:
abcdef
aeiou
zaeyiax
abecixoxu
(The bolded letters are shown here only for illustration.)
Example Output:
aeiou
zaeyiax
Found 2 matches
abcdef
aeiou
zaeyiax
abecixoxu