Horje
check value vowel user input python Code Example
check value vowel user input python
# taking user input
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")




Python

Related
write a program to check whether a character is vowel or consonant in python Code Example write a program to check whether a character is vowel or consonant in python Code Example
binomial coefficient python Code Example binomial coefficient python Code Example
pydrive list folders Code Example pydrive list folders Code Example
select a value randomly in a set python Code Example select a value randomly in a set python Code Example
python read_excel index_col Code Example python read_excel index_col Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7