summaryrefslogtreecommitdiffhomepage
path: root/python3.html.markdown
diff options
context:
space:
mode:
authorzlarsen <zlarsen@dmail.dixie.edu>2015-10-09 14:07:44 -0600
committerzlarsen <zlarsen@dmail.dixie.edu>2015-10-09 14:07:44 -0600
commit46b746e8c6101f8a25ba463fb2fb4045c29098a1 (patch)
tree688ca286a0ecb9590562504a53fde96c8bbfcd76 /python3.html.markdown
parent0d0c495c701acc77047df138e169e7cc7ece5f97 (diff)
parentef40704f9b66ae85d7a8a6853abbbf8810af3b90 (diff)
Merge remote-tracking branch 'adambard/master' into forth-es
Diffstat (limited to 'python3.html.markdown')
-rw-r--r--python3.html.markdown3
1 files changed, 3 insertions, 0 deletions
diff --git a/python3.html.markdown b/python3.html.markdown
index acd6187c..cd1a83cc 100644
--- a/python3.html.markdown
+++ b/python3.html.markdown
@@ -550,10 +550,13 @@ add_10(3) # => 13
# There are also anonymous functions
(lambda x: x > 2)(3) # => True
+(lambda x, y: x ** 2 + y ** 2)(2, 1) # => 5
# TODO - Fix for iterables
# There are built-in higher order functions
map(add_10, [1, 2, 3]) # => [11, 12, 13]
+map(max, [1, 2, 3], [4, 2, 1]) # => [4, 2, 3]
+
filter(lambda x: x > 5, [3, 4, 5, 6, 7]) # => [6, 7]
# We can use list comprehensions for nice maps and filters