view bin/loudly @ 5947:ba4b9506833f

<tswett> sed -i \'s/read(0)/read(3)/\' bin/loudly
author HackBot
date Sat, 29 Aug 2015 22:31:24 +0000
parents a06b5a4a8ae5
children 70055e51bdef
line wrap: on
line source

#!/usr/bin/env python
import sys, itertools
inp = sys.stdin.read(3) or sys.argv[1]
cyc = itertools.cycle(["\00304,09","\00309,04"])
print "".join(cyc.next() + c for c in inp)