python和go语言之间如何共享变量?

发布于 2024-12-24 18:31:27 字数 82 浏览 0 评论 0原文

我需要知道如何在两个程序之间共享变量, 基本上,go 程序必须编写一个变量,例如字符串,而 python 程序必须读取该变量。 请帮助我,提前谢谢你。

i need to know how share variable between two program,
basically the go program have to write a variable ,like a string, and the python program have to read this variable.
Please help me, thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不及他 2024-12-31 18:31:27

使用标准流。使用简单的 printf 类型命令将字符串打印到标准输出。然后用 python 中的 raw_input() 读取它。

像这样运行两个程序:

./output | ./read.py

use standard streams. use a simple printf type command to print the string to stdout. then read it with a raw_input() in python.

run the two programs like so:

./output | ./read.py

泅人 2024-12-31 18:31:27

在 Windows 中,两个进程之间进行通信的最常见方式是“命名管道”(也可以是 tcp/ip、Web 服务等)。

一种丑陋但更简单的方法是将值写入文件,然后从 python 读取它。

In Windows, most common way to do communication between two processes is "Named Pipe" (could also be tcp/ip, web service, etc...).

A ugly but lighter way is to write the value to a file, and read it from python.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文