Apologies for the bad formatting, it is my first post. I'm currently trying to return a list of words that begin with vowels from a given list, yet it is returning nothing. Is there a possibility for assistance?
x = ["A","B","C","D","E","F",]
wordList = []
for i in x:
if i[0].lower() == ['a','e','i','o','u']:
wordList.append(i)
return wordList