Computer Science, asked by diljotsinghdhillon, 10 months ago

write a Python program to check the given character is vowel or not​

Answers

Answered by saman7869
7

Answer:

if(ch == 'a' or ch == 'e' or ch == 'i' or ch == 'o' or ch == 'u' or ch == 'A'

or ch == 'E' or ch == 'I' or ch == 'O' or ch == 'U'):

print("The Given Character ", ch, "is a Vowel")

else:

print("The Given Character ", ch, "is a Consonant")

Similar questions