#initializing friends list
friends = ['Alice', 'Bob', 'Charlie', 'Debbie']
#converting objects in list to all upppercase
uppercase_friends = [friend.upper() for friend in friends]
#checking for whether last letter in each object in list ends in a vowel, if so, print statement
for friend in uppercase_friends:
if friend[-1] == "e":
print ("\'" +friend + " IS AWESOME!\'")
This prints out nothing, i tried different ways to word this and it either prints everything for times and doesnt check for a vowel or its nothing. Can i get help with posing this in a way that checks for last character of object in list for a vowel?