Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Collections (2016, retired 2019) Lists Disemvowel

Benjamin Harris
Benjamin Harris
8,872 Points

Removing vowels with a function

I don't know what I am doing!!!

disemvowel.py
def disemvowel(word):
    result = ""

    for char in word:
        if char.lower() not in ["a","e","i","o","u"]:
            result+= char
            return result

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Benjamin Harris well, you could've fooled me because your logic is really solid! The problem here, is that you're returning the result before you're meaning to which means it doesn't get to the end of that for loop. If you move the return to line up with your for, it passes with flying colors! Note: this is a challenge that trips up many, but you seem to have gotten it barring one indentation anomaly.

Hope this helps! :sparkles: