Created
August 9, 2017 22:05
-
-
Save WhiteRaBot/d9ed00b9e0fe40444a2b8196d533e47d 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
This is what I tried to do. | |
class Newb: | |
def understand(): | |
print("thanks for helping") | |
return | |
def call_understand(): | |
understand() | |
Is this what I should of done: | |
class Newb: | |
def understand(): | |
print("thanks for helping") | |
return | |
def call_understand(): | |
self.understand() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment