comparison bin/rainbow.old @ 8708:03457f8e8353

<oerjan> ` mv bin/rainbow{,.old}
author HackBot
date Tue, 05 Jul 2016 03:36:09 +0000
parents bin/rainbow@72e6c7099969
children
comparison
equal deleted inserted replaced
8707:0f7031b5efcd 8708:03457f8e8353
1 #!/hackenv/bin/shebang_args_or_input 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=list(re.sub('C+','C',''.join(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)