def has_a_vowel(a_str):
for letter in a_str:
if letter in "aeiou":
return True
else:
return False
print("Done!")
Calling this function would only check the first element... How can I get it to run through the string before returning True or False? Thank you