Created
January 21, 2018 03:04
-
-
Save tkamishima/aa55ea9fb958342147cc0fbb3c1d6095 to your computer and use it in GitHub Desktop.
How can I call function defined in a method
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
| class A(object): | |
| def fun_a(self): | |
| def fun_ab(x): | |
| print(x) | |
| fun_ab('def') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment