module_head = ''''\ """A module"""' class Thing(object): """A class.""" ''' method_body = '''\ def method_%i(self): """A method.""" trans = self.transaction self.transaction = trans trans.response ''' print module_head for i in range(98): print method_body % i