使用getattr
be_called_function = getattr(self, create_rule_method_name)decison_rule=be_called_function()谁调用了我这个函数import inspect
caller_name = inspect.stack()[1][3]当前函数名
print(inspect.currentframe().f_code.co_name)