Skip to content

Instantly share code, notes, and snippets.

@arpitbbhayani
Created February 7, 2020 06:26
Show Gist options
  • Save arpitbbhayani/474683b32063feca6b9e808c1a74c89c to your computer and use it in GitHub Desktop.
Save arpitbbhayani/474683b32063feca6b9e808c1a74c89c to your computer and use it in GitHub Desktop.
def area(l, b):
return l * b
>>> func = Function(area)
>>> func.key()
('__main__', <class 'function'>, 'area', 2)
>>> func(3, 4)
12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment