Created
August 28, 2018 09:54
-
-
Save lipracer/4766cc90984c09a721b0ff410394cdf7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def pow_list(ls): | |
pow = lambda x : x*x | |
return map(pow, ls) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment