Untitled
unknown
python
4 years ago
193 B
7
Indexable
word = 'This website is for losers LOL!' def deletvowel(w): for char in w: if char in "aeiou": w = w.replace(char,'') return w print(deletvowel(word))
Editor is loading...
word = 'This website is for losers LOL!' def deletvowel(w): for char in w: if char in "aeiou": w = w.replace(char,'') return w print(deletvowel(word))