gpt4 book ai didi

python - 在python中使用命令行参数将变量设置为c程序的输出

转载 作者:太空宇宙 更新时间:2023-11-04 04:11:35 24 4
gpt4 key购买 nike

我正在尝试使用一个 python 脚本,其中一个变量设置为需要命令行参数的 c 程序 test.c 的输出。下面是我的 C 程序:

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>

int main(int argc, char *argv[])
{
int lat;
lat=atoi(argv[1]);
printf("-->%d\n",lat);
}

python程序是:

  import subprocess

for lat in range(80,-79,-1):
cmd = '"./a.out" {}'.format(lat)
print "cmd is ",cmd
parm31=subprocess.call(cmd,shell=True)
print "parm is ",parm31

我已经编译了 test.c 以获得 a.out。我的目标是在运行带有嵌入的 c 程序(test.c 或 a.out)的 python 程序时输出:

 parm is -->80
parm is -->79
parm is -->78
...
parm is -->-77
parm is -->-78

不幸的是,我没有得到输出,而是变量的数字部分的其他值和一些其他不需要的输出。我该如何调整这个程序以获得正确的输出?

最佳答案

根据 [Python 2.Docs]: subprocess.call(args, *, stdin=None, stdout=None, stderr=None, shell=False) (强调是我的):

Run the command described by args. Wait for command to complete, then return the returncode attribute.

让事情正常进行:

  • 改用check_output
  • 将要携带的命令做成一个列表(不是字符串)
  • 不要传递 shell=True
import subprocess

for lat in range(80, -79, -1):
cmd = ["\"./a.out\"", "{}".format(lat)]
print "Command is ", " ".join(cmd)
out = subprocess.check_output(cmd)
print "Command output is ", out.strip()

关于python - 在python中使用命令行参数将变量设置为c程序的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56710955/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com