view bin/CaT @ 3278:ecd72be84baa

<elliott> addquote <shachaf> Hmm, is an Electronic Signature in a PDF file a thing? <shachaf> How do they work? <zzo38> [1] Yes. [2] It doesn\'t.
author HackBot
date Thu, 04 Jul 2013 02:22:29 +0000
parents cedbde4c8d40
children 5909a6756b89
line wrap: on
line source

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