Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Python 初学者(使用 2.7),想知道是否有办法让我编写的程序运行其他程序。
基本上,我想构建一个评估其他程序的程序。
查看子流程模块。那里给出的例子之一:
>>> subprocess.check_output(["echo", "Hello World!"]) 'Hello World!\n'
这应该是你所需要的