I am very new to programming in general and have started with Python. I am working through various problems to try and better my understanding.
I am trying to defin
You can also do it succinctly with a comprehension:
def anti_vowel(text): return ''.join(ch for ch in text if ch.upper() not in 'AEIOU')