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:

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:
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.
Python: Tips of the Day
Joining Collection:
name = ["Owen", "Eddie"] print(" ".join(name))
Owen Eddie
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
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