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 trialBenjamin Harris
8,872 PointsRemoving vowels with a function
I don't know what I am doing!!!
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
Treehouse TeacherBenjamin 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!