call# swordfish.call(function, *args)# Call the specified function with the provided arguments. 参数: function (str) -- A string indicating the name of the function to be called. 返回: The result of calling the function. 返回类型: Constant 示例 >>> import swordfish as sf >>> sf.call("add", 10, 20) Long(30)