Write a Python program, call it “Vowels.py” , that accepts asentence from the user and return the number of small lettersvowels in it. Ignore the capital letters vowels. Vowels that areneeded to be counted are (a,e,i,o, and u).
For example : if the user enters “This is a test text” then theprogram prints “There are 5 vowels” as follows:
Enter a string : This is a test text
There are 5 vowels
Expert Answer
Answer to Write a Python program, call it “Vowels.py” , that accepts a sentence from the user and return the number of small l…