标签: python-2.7
我有一系列代码如下所示。在test.Bat文件中包含代码,它将在代码完成后终止。 一切正常,但是当我尝试运行python脚本时 - 它在批处理文件运行时打印完
from subprocess import Popen print "start" Popen("C:\Users\test.Bat") print "Finished"
我希望在完成批处理文件后打印“完成”。如何实现