Skip to content

Instantly share code, notes, and snippets.

@WhiteRaBot
Created August 9, 2017 22:05
Show Gist options
  • Save WhiteRaBot/d9ed00b9e0fe40444a2b8196d533e47d to your computer and use it in GitHub Desktop.
Save WhiteRaBot/d9ed00b9e0fe40444a2b8196d533e47d to your computer and use it in GitHub Desktop.
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