。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.........【阅读全文】
发布时间:2017-03-26 21:51:19
awk 之for ,使用for循环实现上面的列子点击(此处)折叠或打开awk?-F:?'{for (i=1;i=4) {print $i}}}'?/etc/passwdBatch jobs daemon/var/spool/atjobs/b.........【阅读全文】
发布时间:2017-03-17 00:11:46
1,分析列表,保存字典点击(此处)折叠或打开timesL = (0,1243,2312,2332,2333,2333,0,0,0,0,0,0,0,2332,2222,2222,2221,0,0,0,0,0,2111,590,2223,2224,2333,2444,2443,0,0,0,0,0,0,0,1555,2112)times = list(timesL)dicTime = {}key = 0.........【阅读全文】