2014年(45)
发布时间:2014-02-18 14:14:02
在linux的top命令里的cpu信息是什么意思呢? Cpu(s): 62.1% us, 15.9% sy,0.1% ni, 19.4% id,2.0% wa,0.1% hi,0.4% si Mem: 8247956k total,8232004k used,15952k free,205240k buffers Swap: 8191992k total,48k used,8191944k free,7156092k cached top命令是Linux下常用的性能分析.........【阅读全文】
发布时间:2014-01-26 14:18:11
import urllibfile=urllib.urlopen('http://www.baidu.com/')import urllib2file=urllib2.urlopen(test_url,timeout=10).read()urllib与urllib2区别:可以把urllib2当作urllib的扩增,比较明显的优势是urllib2.urlopen可以接受Request对象作为参数,从而可以控制HTTP Request的header部。做HTTP Request时应当.........【阅读全文】
发布时间:2014-01-26 14:13:36
import sys args=sys.argv[1:]args[0],args[1],args[2]例如:运行脚本:common.pypython common.py "url" "<product_id>" "</product_id>"其中:“url”为args[0]"<product_id>"为args[1]"</product_id>"为args[2]......【阅读全文】
发布时间:2014-01-26 14:04:09
1. 逐行读取某文件,将每行的内容作为一个元素放到一个列表中:lst=[]while True: r=file.readline() if len(r) ==0 : break elif r.count('\n') ==len(line): continue else:&n.........【阅读全文】
发布时间:2014-01-22 15:15:56
json 格式的例子:{ "firstName": "John", "lastName": "Smith", "address": { "streetAddress": "21 2nd Street", "city": "New York", "state": "NY", "postalCode": 10021 }, "phoneNumbers": [ { "type": "home", "number": "212 555-1234" }, { "type": "fax", "number": "646 555-456.........【阅读全文】