changeset 2335:16603a34c6d2

<oerjan> cat colorize.2 >bin/colorize
author HackBot
date Fri, 01 Mar 2013 03:29:05 +0000
parents d938eb61bcc1
children 1b1fc3726793
files bin/colorize
diffstat 1 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bin/colorize	Fri Mar 01 03:28:42 2013 +0000
+++ b/bin/colorize	Fri Mar 01 03:29:05 2013 +0000
@@ -1,2 +1,8 @@
-#!/bin/sh
-python -c "import random; w=raw_input(); p=list('x'*len(w)+'C'*int((341-len(w))/3+1)); random.shuffle(p); i=(c for c in w); print ''.join(i.next() if c=='x' else chr(3)+'%02d' % random.randrange(2,15) for c in ['C']+p)"
+#!/usr/bin/env python
+import random
+import re
+w=raw_input()
+p=list('x'*len(w)+'C'*int((341-len(w))/3+1))
+random.shuffle(p)
+i=(c for c in w)
+print ''.join(i.next() if c=='x' else chr(3)+'%02d' % random.randrange(2,15) for c in ['C']+p)