码迷,mamicode.com
首页 >  
搜索关键字:python模块    ( 1567个结果
python模块
1.python模块 模块是函数的扩展,函数是一段程序,模块是一段程序块 模块都是放在python的lib文件夹下,他封装了一系列功能,我们自定义的模块也是放在这里 导入模块 import math math.pi3.141592653589793sys模块 官方提供的自带模块,叫做标准库模...
分类:编程语言   时间:2015-12-09 17:09:42    阅读次数:233
python模块学习——urllib模块
参考学习:http://www.blogjava.net/ashutc/archive/2011/03/21/346695.html1.urllib.quote()函数模拟登录时,对用户名进行处理:1 def GetUserName(userName):2 userNameTemp = ur...
分类:编程语言   时间:2015-12-08 18:17:31    阅读次数:1378
python模块的学习——base64模块
首先,对于base64模块的学习参考别人的总结:http://blog.csdn.net/wanghai__/article/details/6898032之后,在模拟登录的过程中,需要对用户名进行加密编码,采用base64.encodestring()函数1 def GetUserName(use...
分类:编程语言   时间:2015-12-08 18:04:43    阅读次数:552
python 模块之os.path模块
# -*- coding: cp936 -*-#python 27#xiaodeng#python 模块之os.path模块#http://www.cnblogs.com/dkblog/archive/2011/03/25/1995537.html'''os.path.abspath(path) #...
分类:编程语言   时间:2015-12-03 15:35:35    阅读次数:195
python第五课
翻译三层装饰器defBefore(request,kargs):print‘before‘defAfter(request,kargs):print‘after‘defFilter(before_func,after_func):defouter(main_func):defwrapper(request,kargs):before_result=before_func(request,kargs)if(before_result!=None):returnbefore_result;main_..
分类:编程语言   时间:2015-12-03 02:19:12    阅读次数:287
开启Python之路
开始自学Python环境配置自己百度去!!!计算与变量字符创、列表、元组和字典简单的画图使用if和else条件控制语句循环使用函数和模块来重用代码使用类和对象Python内建函数的介绍常用的Python模块高级作图用tkinter画高级图形游戏1:弹球游戏2:火柴人逃生
分类:编程语言   时间:2015-11-29 13:23:32    阅读次数:136
关于一只爬虫
记一只爬虫 记一只爬虫新建projectscrapy startproject tutorial 这些文件主要是:scrapycfg:项目配置文件,一般不需要改tutorial/:项目python模块,代码将从这里...
分类:其他好文   时间:2015-11-28 21:25:08    阅读次数:243
python模块之codecs
http://blog.csdn.net/suofiya2008/article/details/5579413
分类:编程语言   时间:2015-11-25 19:23:40    阅读次数:144
python模块之lib2to3(py2转py3自动化工具)
# -*- coding: utf-8 -*-#python 27#xiaodeng#python模块之lib2to3(py2转py3自动化工具)#http://tieba.baidu.com/p/3939904893#操作步骤:1、需要转换test.py文件为py3代码#test.py文件放置在S...
分类:编程语言   时间:2015-11-21 18:21:20    阅读次数:736
python模块之HTMLParser抓页面上的所有URL链接
# -*- coding: utf-8 -*-#python 27#xiaodeng#python模块之HTMLParser抓页面上的所有URL链接import urllib#MyParser类写法一'''from HTMLParser import HTMLParserclass MyParser...
分类:编程语言   时间:2015-11-21 15:52:12    阅读次数:173
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!