Skip to content

Instantly share code, notes, and snippets.

@Ikhiloya
Created November 3, 2018 06:41
Show Gist options
  • Save Ikhiloya/b7be571e8c17369e24e853101bde2a1c to your computer and use it in GitHub Desktop.
Save Ikhiloya/b7be571e8c17369e24e853101bde2a1c to your computer and use it in GitHub Desktop.
anti_vowel
def anti_vowel(text):
result = ""
vowels = "ieaouIEAOU"
for char in text:
if char not in vowels:
result += char
return result
print anti_vowel("hello book")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment