Q5. WAP to input character and check vowel or not using phyton
Answers
Answered by
0
Answer:
Here is ur program
Explanation:
def vowelornot(x);
if (x='a' || x='e' || x='i' || x='o' || x='u'):
return(True)
else
return(False)
Enjoy Programming
HOPE IT HELPS
Similar questions