def get(self):
def func_not_found(): # just in case we dont have the function
print 'No Function '+self.i+' Found!'
func_name="function" + self.i
func = getattr(self,func_name,func_not_found)
func() # <-- this should work!