If I try the below code in command prompt , I get correct results, however, the same code using IDE(Atom) do not produce any results.
def search_for_vowels(word):
"""Display any vowels found in an asked for word"""
vowels = set('aeiou')
found = vowels.intersection(set(word))
return bool(found)
search_for_vowels('galaxy')