Created
February 7, 2020 06:25
-
-
Save arpitbbhayani/4196bd267dfd31734643737c21c159fa 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(radius): | |
return 3.14 * radius ** 2 | |
>>> locals() | |
{ | |
... | |
'area': <function area at 0x10476a440>, | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment