view bin/CaT @ 4692:34da8e1b124d

<coppro> rm alise
author HackBot
date Thu, 24 Jul 2014 06:44:02 +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()))