Answers for "Write a program to print the character is vowel or consonant in python"

0

Write a program to print the character is vowel or consonant in python

def VOC(x):
if (x == 'a' or x == 'e' or x == 'i' or x == 'o' or x == 'u'):
print("Vowel")
else:
print("Consonant")
VOC('e')
VOC('d')
Posted by: Guest on June-22-2021

Code answers related to "Write a program to print the character is vowel or consonant in python"

Python Answers by Framework

Browse Popular Code Answers by Language