Skip to content

Instantly share code, notes, and snippets.

@alanbriolat
Created March 19, 2012 11:40
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 alanbriolat/2108676 to your computer and use it in GitHub Desktop.
Save alanbriolat/2108676 to your computer and use it in GitHub Desktop.
file schmile
def schm(word):
return 'schm' + word.lstrip("y").lstrip("bcdfghjklmnpqrstvwxz")
if __name__ == '__main__':
import sys
print sys.argv[1], schm(sys.argv[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment