Skip to content

Instantly share code, notes, and snippets.

@lost-theory
Created February 12, 2013 02:40
Show Gist options
  • Save lost-theory/4759801 to your computer and use it in GitHub Desktop.
Save lost-theory/4759801 to your computer and use it in GitHub Desktop.
t2s i0s f1n
>>> ' '.join(map(lambda s: "%s%s%s" % (s[0], len(s)-2, s[-1]), "steven kryskalla".split()))
's4n k7a'
>>> ' '.join(map(lambda s: "%s%s%s" % (s[0], len(s)-2, s[-1]), "this is fun".split()))
't2s i0s f1n'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment