摘要: 目前使用到的有两种方式:os.system()和os.popen()import osos.system('cd e:cjx') #调用后返回执行结果状态如果想获得返回结果,则使用以下方式:import osres = os.popen('dir').readlines()print(res)如果要... 阅读全文
posted @ 2015-06-30 16:31 药师Aric 阅读(1182) 评论(0) 推荐(0) 编辑