view bin/CaT @ 9417:04f35e31a97f

<hppavilion[1]> le/rn subtle/The \'b\' sound is pronounced in \'subtle\', it\'s just difficult to hear
author HackBot
date Mon, 24 Oct 2016 03:56:52 +0000
parents 7f957c1f4661
children
line wrap: on
line source

#!/usr/bin/env python
import sys
sys.stdout.write ((lambda s: "".join([(s[i].upper() if i%2==0 else s[i].lower()) for i in range(len(s)) ]))(open("/dev/stdin").read()))