สถานะการส่งล่าสุด: -

Check Consonant or Vowel

Check Consonant or Vowel

Check character input that consonant or vowel

Note: your program need to check covers upper and lower case.

Example Outputs

Enter your character: a
This is vowel


Example Outputs

Enter your character: B
This is consonant


def check(char):
# Do not forget to put spaces equally on each line before sending

char = input("Enter your character: ")
check_char = check(char)
print(f"This is {check_char}")