Create a code that will look at a single letter input. If the letter is a vowel, return the message "your letter is a vowel". Otherwise, return "your letter is a consonant."

Make sure that the code is in python. I will give brainliest to whoever answers the quickest. Thank you.

Respuesta :

input=(“Enter a Letter ”)
if input = “a”, “e”, “i”, ”o”, ”u”
print(“You letter is a vowel”)