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 trialDavid Gabriel
Python Web Development Techdegree Student 979 PointsHow do ii return the element that was remove? not quite sure whether return value from remove is none, please help
Vowels = ("a, "e", "i", "o", "u")
def disemvowel(word): word = letters[] for letter in word: if letter.lower() in a vowels: word.remove(letter) return word
Vowels = ("a, "e", "i", "o", "u")
def disemvowel(word):
word = letters[]
for letter in word:
if letter.lower() in a vowels:
word.remove(letter)
return word
2 Answers
Stuart McIntosh
Python Web Development Techdegree Graduate 22,874 PointsHi there, you are very close. Take a look at this line : word = letters[] to make word into a list so that you can use the remove function you need to do something like:
word = list(word)
Also, the if statement should read :
if letter.lower() in vowels:
Hope this is helpful
David Gabriel
Python Web Development Techdegree Student 979 PointsHi Stuart,
Thanks, there is progress, but still not passing.
vowels = ("a", "e", "i", "o", "u")
def disemvowel(word): word = list(word) for letter in word: if letter.lower() in vowels: word.remove(letters) return word
Stuart McIntosh
Python Web Development Techdegree Graduate 22,874 Pointshi there, from what I can read above - have you used letters instead of letter?
word.remove(letters)
David Gabriel
Python Web Development Techdegree Student 979 PointsDavid Gabriel
Python Web Development Techdegree Student 979 Pointsnot quite what I am doing ?