Skip to content

Instantly share code, notes, and snippets.

@pcote
Last active March 26, 2017 14:17
Show Gist options
  • Save pcote/8541939b21c51c1a5995f8fe1985a897 to your computer and use it in GitHub Desktop.
Save pcote/8541939b21c51c1a5995f8fe1985a897 to your computer and use it in GitHub Desktop.
class MyClass(object):
def say_stuff(self):
print("Say stuff message is: {}\n\n".format(self.msg))
class OtherClass(object):
def __init__(self, msg):
self.msg = msg
other_ob = OtherClass("Hello from the other_ob instance")
MyClass.say_stuff(other_ob)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment