view bin/rainwords @ 3278:ecd72be84baa

<elliott> addquote <shachaf> Hmm, is an Electronic Signature in a PDF file a thing? <shachaf> How do they work? <zzo38> [1] Yes. [2] It doesn\'t.
author HackBot
date Thu, 04 Jul 2013 02:22:29 +0000
parents f2f65a1fa363
children ad9096aff22a
line wrap: on
line source

#!/usr/bin/python
import random; w=[l.split() for l in open("/dev/stdin").read().split("\n")]; r=[4,7,8,9,2,13,6]; print "\n".join((lambda s: " ".join(chr(3) + str(r[(i+s)%len(r)]) + l[i] for i in range(len(l))))(random.randrange(0, len(r))) for l in w)