view bin/CaT @ 6647:4aa157eb793d

<coppro> mkx bin/5quote//quote;quote;quote;quote;quote;
author HackBot
date Tue, 09 Feb 2016 00:21:09 +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()))