Skip to content

Instantly share code, notes, and snippets.

@boredstiff
Last active August 29, 2015 14:12
Show Gist options
  • Save boredstiff/d60438b955cabc904386 to your computer and use it in GitHub Desktop.
Save boredstiff/d60438b955cabc904386 to your computer and use it in GitHub Desktop.
disemvowel.py
"""Pass in a string to remove the vowels and spaces"""
def disemvowel(t):
v = 'aeiou '
print "".join([l for l in t.lower() if l not in v])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment