Skip to content

Commit f412ed0

Browse files
committed
triple and fun
1 parent 6b4e730 commit f412ed0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

function.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,6 @@ def printMax(x, y):
102102
print 10 * '*', 'lambda', 10 * '*';
103103
print (lambda a,b: a+b)(1,3); #4
104104
print map(lambda x: x * x, [1,2,3]); # [1, 4, 9]
105+
106+
a,b,c = (lambda: (1,3,5))();
107+
print a,b,c;

0 commit comments

Comments
 (0)