From 26c490f404731d053a6205719b6246502c07b449 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sat, 14 Jun 2014 16:46:27 +0200 Subject: init --- python/lowercase.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 python/lowercase.py (limited to 'python/lowercase.py') diff --git a/python/lowercase.py b/python/lowercase.py new file mode 100755 index 0000000..a096d43 --- /dev/null +++ b/python/lowercase.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python2 + +import sys + + +for line in sys.stdin: + sys.stdout.write(line.lower()) + -- cgit v1.2.3