Computer Science, asked by Anonymous, 5 months ago

Create a program to check whether the alphabet entered by the user is a vowel or not

Answers

Answered by rishita29gupta
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