在這種情況下,我們的目標是透過從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
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中文網其他相關文章!