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 trialDenis Chernenko
4,077 PointsPlease help to proceed this task using loops.
I'm not going to find easy ways :) so what to use loops instead of creating new list and append it, if i is in vowels
Appreciate for help in that style. Thank you in advance
vowels = ["a","e","i","o","u"]
def disemvowel(word):
for i in list(word.lower()):
for y in list(vowels.lower()):
if i == y:
word.remove(y)
else:
print("else")
return (word)
1 Answer
Steven Parker
231,236 PointsA few issues stand out at first glance:
- you don't need to print anything in this challenge
- the return statement needs to be indented
- trying to remove a lower-cased version of a capital letter won't work
- you can't use "
.lower()
" on a list, and the vowels are lower case already - you don't need an else
Denis Chernenko
4,077 PointsDenis Chernenko
4,077 PointsPlease see my new code: word = "aadeddsf" vowels = ["a","e","i","o","u"] def disemvowel(word): for i in list(word.lower()): for y in list(vowels): try: list(word).remove(y) except ValueError: break if i == y: list(word).remove(y) print("{} need to be removed, but not. and the proof word is:".format(y)) print(word) disemvowel(word)
Just run please and let me know why list(word).remove(y) is not working.
Thank you