Write a function classify_letter(ch) that takes a single lowercase letter ch and returns "Vowel" if it is one of a, e, i, o, u, and "Consonant" otherwise.
Examples
Example 1
Input
classify_letter("e")
Output
"Vowel"
Explanation
"e" is a vowel.
Example 2
Input
classify_letter("k")
Output
"Consonant"
Explanation
"k" is not a vowel.
Constraints
ch is a single lowercase alphabetic character.
Topics
Conditional Statementsmembership check
Companies
ZomatoSwiggy
Hints
Hint 1
Use the `in` operator against a string of vowels, e.g. `"aeiou"`.