Skip to content

Instantly share code, notes, and snippets.

@lipracer
Created August 28, 2018 09:54
Show Gist options
  • Save lipracer/4766cc90984c09a721b0ff410394cdf7 to your computer and use it in GitHub Desktop.
Save lipracer/4766cc90984c09a721b0ff410394cdf7 to your computer and use it in GitHub Desktop.
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