Instagram
youtube
Facebook
Twitter

Check if a Given Character is a Vowel or Consonant

A Python program to determine whether a given character is a vowel or a consonant using simple string comparison.

Here’s a explanation of the code:

  1. Function Definition (check_character):
     
    • Takes a string as input.
       
    • Checks if the input character is in the predefined vowels list (both uppercase and lowercase).
       
    • Returns "Vowel" if found, otherwise returns "Consonant".
       
  2. User Input (char = input("Enter a character: ")):
     
    • Takes a single character input from the user.
       
  3. Function Call & Output (print(check_character(char))):
     
    • Calls the function with user input and prints whether the character is a vowel or consonant.

 

Program:

def check_character(string):

    vowels = "AEIOUaeiou"

    if string in vowels:

        return "Vowel"

    else:

        return "Consonant"

char = input("Enter a character: ")

print(check_character(char))