Untitled
unknown
python
3 years ago
193 B
6
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))