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

I am getting the following error and am not sure how to fix it: AttributeError: 'str' object has no attribute 'remove'

Hello,

I am getting the following error and am not sure what is causing it: AttributeError: 'str' object has no attribute 'remove'

From the prompt, input "word" is a string, at least from my understanding.

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

3 Answers

the remove method is only available on mutable sequences. strings are immutable, so remove is not a string method.

Brother Best answer in the you freaking saved my life

Thank you.

def disemvowel(word): new_word = word vowels = ('a', 'e', 'i', 'o', 'u') for x in word.lower(): if x in vowels: new_word = new_word.remove(x, "")

return new_word