changeset 2330:07b96602ced0

<oerjan> fetch http://oerjan.nvg.org/colorize
author HackBot
date Fri, 01 Mar 2013 03:19:30 +0000
parents bfeb9841fc0a
children 2d4a84770216
files colorize
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/colorize	Fri Mar 01 03:19:30 2013 +0000
@@ -0,0 +1,9 @@
+#!/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)
+p=re.subst('C+','C',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)