# take input
ch = input('Enter any character: ')
# check vowel or constant and display result
if(ch=='A' or ch=='a' or ch=='E' or ch =='e' or ch=='I'
or ch=='i' or ch=='O' or ch=='o' or ch=='U' or ch=='u'):
print(ch, "is a Vowel")
else:
print(ch, "is a Consonant")
Vowel or Consonant
Python Program to Check Whether a Character is Vowel or Consonant
0 Comments
Add Comment
Log in to add a comment