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 trialmichael silverman
876 PointsI 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.
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
james south
Front End Web Development Techdegree Graduate 33,271 Pointsthe remove method is only available on mutable sequences. strings are immutable, so remove is not a string method.
michael silverman
876 PointsThank you.
Dawit Tsegaye
950 Pointsdef 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
Hrithik Sharma
6,090 PointsHrithik Sharma
6,090 PointsBrother Best answer in the you freaking saved my life