Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

white rose
Courses Plus Student 1,033 PointsWhy does it think v is a list object?
Am I overcomplicating this?
def disemvowel(word):
vowels = ['a', 'e', 'i', 'o', 'u']
word = list(word)
for v in vowels:
while (v in word.lower()):
print v
try:
word.remove(v.upper())
except ValueError:
pass
try:
word.remove(v.lower())
except ValueError:
pass
return "".join(word)
def remove_word(word, letter)
word = list(word)
try:
word.remove(letter)
except ValueError:
pass
return word
2 Answers

james south
Front End Web Development Techdegree Graduate 33,258 Pointsit is saying word is a list object (which it is), not v.

Bapi Roy
14,237 PointsHere is better way of your code
def disemvowel(word): vowels = ['a','e','i','o','u', 'A','E','I','O','U']
ret_word = []
for i in word :
if i not in vowels:
ret_word.append(i)
return ''.join(ret_word)