Executing and saving command line
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Executing command line programs from within python
如何在python中执行单个命令,并将命令和提示之间的所有内容保存到变量?我尝试了以下代码:
1 2 | import os var = os.system('ls') |
不幸的是,我的var值是0,而不是'ls'输出。我怎么修?
您可以使用
1 2 3 | >>> subprocess.check_output(["echo","Hello World!"]) 'Hello World! ' |