the goal is to write a code that removes all of the vowels in a user inputted string; my code wont print a final new_inp string with no vowels. It seems that the line new_inp=inp.replace(ch,"") does not do anything. Anyone? Thank you.
inp="je m'en fou!"
vocals=['a','e','i','o','u']
for ch in inp.lower():
if ch in vocals:
new_inp=inp.replace(ch,"")
print (new_inp)