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

Sean Hetzel
Sean Hetzel
1,334 Points

Its working in IDLE but not here

I really don't understand why its getting letters its not supposed to.

disemvowel.py
def disemvowel(word):
    word = word.lower()
    result = ""
    for letter in word:
        if letter not in "aeiou":
            result += letter
    word = result
    return word

1 Answer

Christof Baumgartner
Christof Baumgartner
20,864 Points

Hi Sean,

with the second line, you changed the word, so it would always return the lowercase version of the word in the end. Instead you need to check in the if-statement for the lowercase letter and not change all letters to lowercase:

def disemvowel(word):
    result = ""
    for letter in word:
        if letter.lower() not in "aeiou":
            result += letter
    return result