diff --git a/anti_vowel b/anti_vowel new file mode 100644 index 0000000..2bfb13f --- /dev/null +++ b/anti_vowel @@ -0,0 +1,8 @@ +def anti_vowel(text): + word='' + for i in text: + if i.lower() not in"aeiou": + word+=i + return word +print anti_vowel("Aeino Hey You!") +