w3resource

Python Exercise: Check whether an alphabet is a vowel or consonant

Python Conditional: Exercise - 32 with Solution

Write a Python program to check whether an alphabet is a vowel or consonant.

Pictorial Presentation:

Python Exercise: Check whether an alphabet is a vowel or consonant

Sample Solution:

Python Code:

l = input("Input a letter of the alphabet: ")

if l in ('a', 'e', 'i', 'o', 'u'):
	print("%s is a vowel." % l)
elif l == 'y':
	print("Sometimes letter y stand for vowel, sometimes stand for consonant.")
else:
	print("%s is a consonant." % l) 
	 

Sample Output:

Input a letter of the alphabet: u                                                                             
u is a vowel. 

Flowchart:

Flowchart: Check whether an alphabet is vowel or consonant

Python Code Editor:

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to calculate a dog's age in dog's years.
Next: Write a Python program to convert month name to a number of days.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Joining Collection:

name = ["Owen", "Eddie"] 
print(" ".join(name))
Owen Eddie

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook