Difference between revisions of "Python: Lambda and List Comprehensions"

From MyWiki
Jump to: navigation, search
(Created page with "<source lang="python"> my_fundtion = lambda a,b,c : a + b </source>")
 
Line 1: Line 1:
 
<source lang="python">
 
<source lang="python">
my_fundtion = lambda a,b,c : a + b
+
my_function = lambda a,b,c : a + b
  
  
 
</source>
 
</source>

Revision as of 11:13, 28 July 2019

my_function = lambda a,b,c : a + b