Created
May 7, 2019 10:13
-
-
Save ItsCosmas/804d088306282f9c1566125f8e360ebb to your computer and use it in GitHub Desktop.
Lambda Functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Functions on the go, without assigning them to a variable | |
# Anonymous functions | |
def square(x): | |
return x*x | |
print(square(2)) | |
print((lambda x: x*x)(4)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment