摘要: 1.os.system()和os.popen() os.popen() 功能强于os.system() , os.popen() 可以返回回显的内容,以文件描述符返回 eg: import os res = os.popen('ifconfig').read() print(res) 2.列表的深浅 阅读全文
posted @ 2016-08-13 16:32 张文强Terry 阅读(132) 评论(0) 推荐(0) 编辑