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

OK, I need you to finish writing a function for me. The function disemvowel takes a single word as a parameter and then

Hello,

I'm not sure how to solve this question, can someone please help or point me in the right direction?

Thank you,

disemvowel.py
def disemvowel(word):
    for word in disemvowel:
        word.remove(["a", "e", "i", "o", "u", "A", "E", "I", "O", "U"])
    return word

1 Answer

Steven Parker
Steven Parker
229,732 Points

Here are a few hints:

  • the argument is a string, but strings do not have a "remove" method
  • you could convert the string into a list (and convert it back later)
  • you could also possibly make use of the "replace" method that strings have
  • with either approach, you'll probably need a loop to work with each letter one at a time