。roth lower(substr(ename,2,length(ena)))
发布时间:2017-04-17 22:59:07
什么也不说了,上例子看吧。点击(此处)折叠或打开# -*- coding: utf-8-*-import psutildef get_proc_by_id(pid): return psutil.Process(pid)def get_proc_by_name(pname):.........【阅读全文】
发布时间:2017-04-09 16:33:33
介绍一下python执行shell命令的四种方法: 注,这个方法得不到shell命令的输出。 这样得到的结果与第一个方法是一样的。 commands.getstatusoutput(cmd)返回(status,output) commands.getstatus(file)返回ls -ld file 的执行结果字符串,调用了getoutput,不建议使用这个方法。 使用subprocess.........【阅读全文】