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

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

Revision as of 11:14, 28 July 2019

my_function = lambda a, b, c : a + b
my_fundtion(1, 2, 3)