I'm beginning python and this seems like it should simple but cant crack it.
I have to create a list with the alphabet in it then print whether each item is a vowel or consonant. I could use some help. Right now it just tells me that every letter is a consonant. Thank you.
alphabet =['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
for letter in alphabet:
if letter in alphabet == ['a','e','i','o','u']:
print (f'{letter} is a vowel')
else:
print(f'{letter} is a consonant')