Skip to content

Instantly share code, notes, and snippets.

@ejmurray
Created March 10, 2015 09:27
Show Gist options
  • Save ejmurray/fde1d194f3ba82d28b86 to your computer and use it in GitHub Desktop.
Save ejmurray/fde1d194f3ba82d28b86 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
# encoding: utf-8
"""
"""
__author__ = 'Ernest'
def anti_vowel(text):
vowels = "AaEeIiOoUu"
no_vowels = ""
for x in text:
if x not in vowels:
no_vowels += x
return no_vowels
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment