Create a program to check whether the alphabet entered by the user is a vowel or not
Answers
Answered by
0
Answer:
Explanation:
a=input()
b=len(a)
b=1
for z in a:
if(z=="a" or z=="e" or z=="i" or z=="o" or z=="u"):
print("Vowel")
else:
print("Not Vowel")
Similar questions