class Foo: __init__(self): self.bar = 'baz' foo = Foo() def thingey(self): return self.bar foo.thang = thingey print foo.thang()