Write a Python program that accepts a sentence from the user andreturn the number of small letters vowels in it. Ignore the capitalletters vowels. Vowels that are needed to be counted are (a,e,i,o,and u).
For example : if the user enters “This is a test text” thenthe program 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 that accepts a sentence from the user and return the number of small letters vowels in it. Ignore…