os.popen()功能强于os.system(),os.popen()可以返回回显的内容,以文件描述符返回。eg:
1 #!/usr/bin/env python2 # -*- coding: UTF-8 -*-3 4 import os5 6 test = os.popen("ping www.baidu.com")7 print test.read()
本文共 251 字,大约阅读时间需要 1 分钟。
os.popen()功能强于os.system(),os.popen()可以返回回显的内容,以文件描述符返回。eg:
1 #!/usr/bin/env python2 # -*- coding: UTF-8 -*-3 4 import os5 6 test = os.popen("ping www.baidu.com")7 print test.read()
转载于:https://www.cnblogs.com/kratos0517/archive/2013/05/06/3063280.html