view bin/loudly @ 6498:78d1ef95fc27

<ais523> ` printf \'echo "\\xc2\\xa0"\' > bin/quietly
author HackBot
date Sun, 03 Jan 2016 02:17:58 +0000
parents 14ff5d127fdf
children f2447fa315a9
line wrap: on
line source

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