comparison colorize.1 @ 2332:d58de78dc914

<oerjan> fetch http://oerjan.nvg.org/colorize
author HackBot
date Fri, 01 Mar 2013 03:20:46 +0000
parents
children
comparison
equal deleted inserted replaced
2331:2d4a84770216 2332:d58de78dc914
1 #!/usr/bin/env python
2 import random
3 import re
4 w=raw_input()
5 p=list('x'*len(w)+'C'*int((341-len(w))/3+1))
6 random.shuffle(p)
7 p=re.sub('C+','C',p)
8 i=(c for c in w)
9 print ''.join(i.next() if c=='x' else chr(3)+'%02d' % random.randrange(2,15) for c in ['C']+p)