Skip to content

Instantly share code, notes, and snippets.

@JakenHerman
Created March 25, 2014 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JakenHerman/9753330 to your computer and use it in GitHub Desktop.
Save JakenHerman/9753330 to your computer and use it in GitHub Desktop.
Reddit's DailyProgrammer subreddit's "Disemvoweler"
x = raw_input( ": ")
v = x.lower()
vowel = 'aeiou'
for f in v:
if f in vowel:
v = v.replace(f, '')
print v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment