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

Disemvowel

"The function disemvowel takes a single word as a parameter and then returns that word at the end. I need you to make it so, inside of the function, all of the vowels ("a", "e", "i", "o", and "u") are removed from the word. Solve this however you want, it's totally up to you! Oh, be sure to look for both uppercase and lowercase"- Given Question

Please can someone explain how I can obtain the correct code? Thank you!

disemvowel.py
def disemvowel(word):
    one =['a']
    two = ['e']
    three =  ['i']
    four = ['o']
    five = ['u']
    if word.upper() == one:
         word.remove(one)
    if word.upper() == two:
         word.remove(two)
    if word.upper() == three:
         word.remove(three)        
    if word.upper() == four:
         word.remove(four)
    if word.upper() == five:
         word.remove(five)
    return word

1 Answer

There are several ways to do this. You are not far off. I can see where your mind is going and that is great. Awesome start. Take a look at my version and see how you can make your code work given what you have already:

def disemvowel(word):
    vowel_dict = {
        'a': 'a',
        'e': 'e',
        'i': 'i',
        'o': 'o',
        'u': 'u'
    }

    holder = []
    for letter in word:
        if letter.lower() in vowel_dict:
            continue
        else:
            holder.append(letter)
    return "".join(holder)

Thank you so much Kristina