Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def anti_vowel(text):
- vowels = "aeiouAEIOU"
- for n in text:
- for i in vowels:
- if i == n:
- new_phrase = text.replace(n, '')
- return new_phrase
- text=raw_input("enter: ")
- anti_vowel(text)
Advertisement
Add Comment
Please, Sign In to add comment