Accepting strings containing all vowels in Python
We will take a string as input from the user and then return YES or NO based on the presence of all vowels in the string.
Example:
Input:
"inlcudehelp"
Output:
No
Explanation:
The string does not contain 'a' and 'o' vowels.
Input:
"IamReadingourBook"
Output:
Yes
Program to accept a string containing all vowels
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer