从 python 调用外部程序并获取其输出

Call external program from python and get its output(从 python 调用外部程序并获取其输出)
本文介绍了从 python 调用外部程序并获取其输出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从 Python 调用一个用 C++ 编写并编译的程序 (.exe).可执行文件将两个文件作为输入并返回一个分数.

I want to call a program (.exe), which is written in C++ and compiled, from Python. The executable takes as input two files and returns a score.

我需要为多个文件执行此操作.所以,我想在 python 中编写一个小脚本,循环多个文件,将它们传递给可执行文件并取回值.

I need to do this for multiple files. So, I would like to write a small script in python which loops over multiple files, passes them to the executable and gets back the values.

现在,我已经完成了搜索,我知道 SWIG 和 Boost::Python 可能是一个选择,但我试图找到是否有更简单的方法.我不需要扩展"C++ 程序.我只是想像从命令行一样调用它并获取返回的数字.

Now, I have done my search and I know about SWIG and Boost::Python may be an option but I was trying to find if there is an easier way. I do not need to 'extend' the C++ program. I simply want to call it just like I would from a command line and get the returned number.

推荐答案

要运行外部程序并获取其输出,请使用 subprocess.check_output 在 Python 2.7+ 上.文档中的示例:

To run an external program and get its output, use subprocess.check_output on Python 2.7+. The example from the docs:

>>> subprocess.check_output(["ls", "-l", "/dev/null"])
'crw-rw-rw- 1 root root 1, 3 Oct 18  2007 /dev/null
'

check_call 只是返回程序的返回码,而不是输出.

check_call just returns the return code of the program, not the output.

这篇关于从 python 调用外部程序并获取其输出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)