Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b4e730 commit f412ed0Copy full SHA for f412ed0
function.py
@@ -102,3 +102,6 @@ def printMax(x, y):
102
print 10 * '*', 'lambda', 10 * '*';
103
print (lambda a,b: a+b)(1,3); #4
104
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