赞
踩
在Python脚本中调用另一个脚本要用到os模块
首先介绍一下os.system()
os.system(os_str), 接受一个参数,该参数即是你再命令行输入的字符串
如:
import os
os_str = 'python hello_word.py'
res = os.system(os_str) # 在调用os.system()时,会直接将传进来的Python脚本输出内容打印在控制台,而返回结果为0或1,0代表success,1表示failed
print res
所以如果我们想要接收所调用Python脚本的输出值并进一步处理,则需要另一个函数 os.popen(),popen返回文件对象
import os
os_str = 'python hello_word.py'
f = os.popen(os_str, 'r')
res = f.readlines() # res接受返回结果
f.close()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。