view bin/rainwords @ 2363:a880b976facf

<Jafet> sed -i "s/(\' \')/()/" $(which rainwords) && rainwords <$(which rainwords)
author HackBot
date Mon, 04 Mar 2013 10:23:07 +0000
parents 2153ab25037e
children 75c80c422f30
line wrap: on
line source

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