处理一些代码,从命令提示符运行它时出现错误...
NameError: name 'Popen' is not defined
但我已经导入了import os
和import sys
。
这是代码的一部分
exepath = os.path.join(EXE File location is here)
exepath = '"' + os.path.normpath(exepath) + '"'
cmd = [exepath, '-el', str(el), '-n', str(z)]
print 'The python program is running this command:'
print cmd
process = Popen(cmd, stderr=STDOUT, stdout=PIPE)
outputstring = process.communicate()[0]
我错过了一些基本的东西吗?我不会怀疑的。谢谢!