西邮大三狗!!!
发布时间:2015-06-17 22:29:07
最近在学习python的Django框架,在学习使用模板的时候发现render_to_response()这个方法挺有意思的,记录一下
看下面两个视图函数:......【阅读全文】
发布时间:2015-06-09 21:59:33
该模块实现一些有用的容器类型1.deque(双端队列)实例方法:d.append(x) 将x添加到d的右端d.appendleft(x) 将x添加到d的左端d.clear() .........【阅读全文】
发布时间:2015-06-09 19:08:19
bisect模块可以使列表保持已排好的顺序,使用二分算法。bisect(list,item,[low,[high]]) 返回要插入item点的索引,如果item在列表中了,则返回该条目的右边索引bisect_right(list,iten,[left,[right]]) 同上bisect_left(li.........【阅读全文】
发布时间:2015-06-08 13:03:40
Thread类Thread(group = none, target = none, name = none, args = [], kwargs = ())用于表示单独的控制线程实例常用方法:t.start() 通过在一个单独的控制线程中调用run()方法,启动线程,只能调用一次t.run()  .........【阅读全文】
发布时间:2015-06-08 13:02:56
多进程模块该模块包含几个重要的类:Process Queue PipeProcess类Process([group [,target [,name] [,args] [,kwargs]]])group默认为none target为可调用对象 args为传递给target的参数(元组)Process实例的方法如下:p.is_alive() 如果p运行,返回Truep.join() &nb.........【阅读全文】
发布时间:2015-06-08 13:01:40
常用函数如下:getcwd() 返回当前工作目录chdir(path) 更改工作目录listdir(path) 列举指定目录中的文件名mkdir(path) &nbs.........【阅读全文】
发布时间:2015-06-08 13:00:49
该模块用于创建复合对象(包括列表,元组,字典,用户自定义对象的实例)的深浅拷贝的函数copy(x)对于内置类型,该函数不常用。直接使用比如 list() dict() set()等调用来创建浅拷贝,这种方式比使用copy()速度快很多deepcopy(x)深拷贝。关于深浅拷贝的概念理解:>>> class&nb.........【阅读全文】
发布时间:2015-06-08 12:59:42
该模块用于产生随机数,常用方法如下:random.random()该方法生成一个[0.0,1.0)之间的随机数random.uniform(a,b)该方法生成一个[a,b)之间的随机数random.ranint(a,b)该方法生成一个[a,b)之间的整数random.randrange([start],stop,[step])在指定范围,按指定基数增长,在该集.........【阅读全文】
发布时间:2015-06-30 19:49:59
<p style="margin-top:0px;margin-bottom:0px;font-family:Arial;font-size:14px;line-height:26px;white-space:normal;background-color:#FFFFFF;">FTP:屏幕信息举例 </p><p style="margin-top:0px;margin-bottom:0px;font-family:Arial;font-size:14px;line-height:26px;white-space:normal;background-color:#F.........【阅读全文】
发布时间:2015-06-30 10:38:31
<span style="word-wrap:normal;word-break:normal;line-height:21px;font-family:simsun;font-size:14px;white-space:normal;background-color:#E2E2E2;color:#000000;">unistd的意思是Unix Standard的意思,里面定义的宏一类的东西都是为了Unix标准服务的(一般来说包括了POSIX的一些常量……<br /></span><span style=.........【阅读全文】