Skip to content

Instantly share code, notes, and snippets.

@pcote
Created March 24, 2017 13:06
Show Gist options
  • Save pcote/b54533f8dae6a4d69b3811bfd9d2656a to your computer and use it in GitHub Desktop.
Save pcote/b54533f8dae6a4d69b3811bfd9d2656a to your computer and use it in GitHub Desktop.
class MyClass(object):
def __init__(self, msg):
self.msg = msg
def say_stuff(self):
print("Say stuff message is: {}\n\n".format(self.msg))
# normal call and instantiation
ob1 = MyClass("Hello there, first example.")
ob1.say_stuff()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment