首页 >后端开发 >Golang >如何获取 Go 程序调用的 Python 函数的返回值?

如何获取 Go 程序调用的 Python 函数的返回值?

Barbara Streisand
Barbara Streisand原创
2024-11-29 19:28:11673浏览

How Can I Retrieve the Return Value of a Python Function Called from a Go Program?

通过返回值检索从 Go 调用 Python 函数

在这种情况下,我们的目标是通过从 Go 程序调用 Python 函数来弥合 Go 和 Python 之间的差距并捕获其返回值以进行进一步处理。然而,初步尝试未能成功检索所需数据。

绊脚石

提供的最小示例说明了挑战:

package main

import (
    "fmt"
    "os/exec"
)

func main() {
    fmt.Println("here we go...")
    program := "python"
    arg0 := "-c"
    arg1 := fmt.Sprintf("'%s'", "import pythonfile; print pythonfile.cat_strings(\"foo\", \"bar\")'")
    cmd := exec.Command(program, arg0, arg1)
    fmt.Println("command args:", cmd.Args)
    out, err := cmd.CombinedOutput()
    if err != nil {
        fmt.Println("Concatenation failed with error:", err.Error())
        return
    }
    fmt.Println("concatenation length:", len(out))
    fmt.Println("concatenation:", string(out))
    fmt.Println("...done")
}

对应Python代码:

def cat_strings(a, b):
    return a + b

执行go run gofile 产生:

here we go...
command args: [python -c 'import pythonfile; print pythonfile.cat_strings("foo", "bar")']
concatenation length:  0
concatenation:  
...done

解决方案

克服这个障碍需要明智地删除命令本身不必要的引号:

package main

import (
    "fmt"
    "os/exec"
)

func main() {
    cmd := exec.Command("python", "-c", "import pythonfile; print pythonfile.cat_strings('foo', 'bar')")
    fmt.Println(cmd.Args)
    out, err := cmd.CombinedOutput()
    if err != nil {
        fmt.Println(err)
    }
    fmt.Println(string(out))
}

此修改导致成功检索函数的返回值:

$ python -c "import pythonfile; print pythonfile.cat_strings('foo', 'bar')"
foobar

以上是如何获取 Go 程序调用的 Python 函数的返回值?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn