Python Program to Check Vowel or Consonant


Python Program to Check Vowel or Consonant


  ch = input("Enter a character: ")

 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")



Output:

 Enter a character: d
 d is a Consonant