I am trying to pickout the words that start with vowels from given list. I am having issue when the starting letter of word is a capital vowel. I am trying below code, can anyone explain why I am not getting desired output.
l=["wood", "old", 'Apple', 'big','item', 'euphoria']
p=[]
for i in l:
if i[0] in('aeiou' or 'AEIOU'):
p.append(i)
print(p)