# HG changeset patch # User HackBot # Date 1362107970 0 # Node ID 07b96602ced0275e30ef0281cb7112e7ff7c7dec # Parent bfeb9841fc0a7eb6bcf9e3ae47e53350b582496b fetch http://oerjan.nvg.org/colorize diff -r bfeb9841fc0a -r 07b96602ced0 colorize --- /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)