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

list problems

the aim of my code it to remove vowels from a an iterable , but keep getting a tab error.Did I write the code wrong for the task at hand.

disemvowel.py
def disemvowel(word):

    vowels = ['a','e','i','o','u','A','E','I','O','U']

    if vowels in word :

        try:

            del word in vowels

        except ValueError:
            pass

    return word

1 Answer

Steven Parker
Steven Parker
230,274 Points

When I try it, I get a syntax error on this line:

            del word in vowels

But that's not the only issue. I'd expect you will want to create a loop so that you can check each letter of the word one at a time. The you can remove only those that are vowels. But be aware that removing items from an iterable while it is controlling a loop can cause other items to get skipped over, so you may want to use a copy as the iterable.