From 26c490f404731d053a6205719b6246502c07b449 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sat, 14 Jun 2014 16:46:27 +0200 Subject: init --- python/mapred.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 python/mapred.py (limited to 'python/mapred.py') diff --git a/python/mapred.py b/python/mapred.py new file mode 100755 index 0000000..c61f7cc --- /dev/null +++ b/python/mapred.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python2 + + +a = [1, 2, 3, 4, 5] +b = reduce(lambda x,y: x+y, map(lambda x: x**2, a)) +print b + -- cgit v1.2.3