Created
February 7, 2020 06:26
-
-
Save arpitbbhayani/474683b32063feca6b9e808c1a74c89c 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 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