Skip to content

Instantly share code, notes, and snippets.

@hidsh
Created June 28, 2012 03:23
Show Gist options
  • Save hidsh/d4d19bfd9da28eb86ce2 to your computer and use it in GitHub Desktop.
Save hidsh/d4d19bfd9da28eb86ce2 to your computer and use it in GitHub Desktop.
python: 高階関数サンプル
>>> def caller(f):
return f(3)
>>> caller(lambda x: x*2)
6
>>> def qu(n):
return n*4
>>> caller(qu)
12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment