Skip to content

Instantly share code, notes, and snippets.

@pcote
Last active March 26, 2017 14:12
Show Gist options
  • Save pcote/6d68aeb317e42df2be25a0c6e74f6f3c to your computer and use it in GitHub Desktop.
Save pcote/6d68aeb317e42df2be25a0c6e74f6f3c 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))
ob = MyClass()
setattr(ob, "msg", "Here is a message from a setattr")
ob.say_stuff()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment