summaryrefslogtreecommitdiff
path: root/python/lowercase.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/lowercase.py')
-rwxr-xr-xpython/lowercase.py8
1 files changed, 8 insertions, 0 deletions
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())
+