I.__class__ Class from which I is instantiatedI.__dict__ Attributes of Iclass C(object): passc = C() dir(c) print c.__dict__print c.__class__c.foo = 1c.bar = 'SPAM'print '%d can of %s please' % (c.foo, c.bar)print c.__dict__
Name (required)
email (will not be published) (required)
Website