view bin/CaT @ 5707:6df6c2767b6c

<oren_> ` echo o\xe5\x87\xb8 >emoticons/flipbird
author HackBot
date Wed, 24 Jun 2015 21:24:23 +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()))