python
haoli001
这个作者很懒,什么都没留下…
展开
-
Python模块学习 ---- random 随机数生成
Python中的random模块用于生成随机数。下面介绍一下random模块中最常用的几个函数。 random.randomrandom.random()用于生成一个0到1的随机符点数: 0 random.uniform random.uniform的函数原型为:random.uniform(a, b),用于生成一个指定范围内的随机符点数,两个参数其中一个转载 2014-08-03 19:34:12 · 515 阅读 · 0 评论 -
(转)Python urllib模块urlopen()与urlretrieve()详解
1.urlopen()方法urllib.urlopen(url[, data[, proxies]]) :创建一个表示远程url的类文件对象,然后像本地文件一样操作这个类文件对象来获取远程数据。参数url表示远程数据的路径,一般是网址;参数data表示以post方式提交到url的数据(玩过web的人应该知道提交数据的两种方式:post与get。如果你不清楚,也不必太在意,一般情况下很少转载 2014-11-05 15:48:17 · 468 阅读 · 0 评论 -
python open 的写入读取方式
自:http://blog.163.com/y845766643@126/blog/static/17104630220101123113029840/r+: Open for reading and writing. The stream is positioned at the beginning of the file.w+:Open for reading a转载 2014-11-03 23:07:17 · 698 阅读 · 0 评论 -
(转)python 文件和路径操作函数
1: os.listdir(path) //path为目录 功能相当于在path目录下执行dir命令,返回为list类型 print os.listdir('..') 2: os.path.walk(path,visit,arg) path :是将要遍历的目录 visit :是一个函数指针,函数圆形为: callback(arg,dir,fileList) 其中arg为转载 2014-11-04 21:22:18 · 444 阅读 · 0 评论 -
python 中 with 语句
在Python中,with关键字是一个替你管理实现上下文协议对象的好东西。例如:file等。示例如下: Python代码 from __future__ import with_statement with open('cardlog.txt','r') as item : for line in item : pr转载 2014-11-01 14:47:34 · 413 阅读 · 0 评论 -
(转)Python字符编码详解
原文章请看http://www.cnblogs.com/huxi/archive/2010/12/05/1897271.html转载 2014-11-16 11:10:48 · 318 阅读 · 0 评论 -
python api
系统编程:提供API(Application Programming Interface应用程序编程接口),能方便进行系统维护和管理,Linux下标志性语言之一,是很多系统管理员理想的编程工具。图形处理:有PIL、Tkinter等图形库支持,能方便进行图形处理。数学处理:NumPy扩展提供大量与许多标准数学库的接口。文本处理:python提供的re模块能支持正则表达式,还提供SGML,原创 2014-10-03 23:42:19 · 426 阅读 · 0 评论 -
小说爬虫
通过读取源码,zheng zhe原创 2014-10-02 17:40:53 · 607 阅读 · 0 评论 -
(转)Python:10054错误
python socket.error: [Errno 10054] 远程主机强迫关闭了一个现有的连接。问题解决方案:前几天使用python读取网页。因为对一个网站大量的使用urlopen操作,所以会被那个网站认定为攻击行为。有时就不再允许下载。导致urlopen()后,request.read()一直卡死在那里。最后会抛出errno 10054.这个错误是connecti转载 2014-11-12 16:31:59 · 1850 阅读 · 0 评论 -
(转)python中httplib.IncompleteRead exception
很恼火的错误,使用urllib2获取远程http内容时,是不是出现httplib.IncompleteRead exception错误。错误具体为:httplib.IncompleteRead: IncompleteRead(1353 bytes read)问题是这个问题一会出现,一会不出现。有时候运行一天也不会出错,有时候10分钟就出错。怎么整都不行。 后原创 2014-11-06 16:32:22 · 6772 阅读 · 2 评论