python
ben1949
这个作者很懒,什么都没留下…
展开
-
python 基本数据类型占用内存空间大小
python中基本数据类型和其他的语言占用的内存空间大小有很大差别import sysa = 100b = Truec = 100Ld = 1.1e =""f = []g =()h = {}i = set([])print " %s size is %d "%(type(a),sys.getsizeof(a))print原创 2017-01-13 14:36:06 · 30280 阅读 · 1 评论 -
python 字典的创建,更改,比较,字典工厂函数
字典的创建t1 = ('a','b','c')t2 = (100,200,300)lista = zip(t1,t2)d = {} 空字典d2 = dict() 字典工厂函数d3 = dict.fromkeys('abcdefg',0) 字典函数d4 = {}.fromkeys('xyzabc',100) 字典函数d5 = dict(lista) 字典工厂函数d6 = d5.cop原创 2017-01-14 15:53:35 · 877 阅读 · 0 评论 -
python 集合set的创建,更改,遍历,元算合并,交集,补集
python 集合set的创建,更改,遍历,元算合并,交集,补集set的创建,set不允许有重复的元素s = set('cheershopa') 可以修改的set,t = frozenset('bookshopa') 不可须该的setr = set([1,2,3,34,15,25,35,45,75]) 列表转化到sett = {} 空seto = set([]) 空sets原创 2017-01-14 16:43:54 · 19573 阅读 · 0 评论 -
Python中的列表(list),元组(tuple),集合(set),字典(dict)
Python中的列表(list),元组(tuple),集合(set),字典(dict)参考链接http://crazyof.me/blog/archives/689.html转载 2017-01-15 09:33:42 · 650 阅读 · 0 评论 -
Python 闭包的理解
首先闭包是一个集合的概念,即自由变量和闭包函数,闭包函数其实就是内嵌函数,下面我们用一个经典装饰器案例来分析闭包,这是一个日志装饰器的函数,在日志函数中可以给一个参数来定日志级别,log 函数实现带参数的装饰器dec函数接收func为参数wrapper函数的参数就全部传给func作为参数其实就是log日志函数 + 装饰函数 + 包装函数 + 真实运行的函数一般的装饰器是原创 2017-01-12 17:18:36 · 373 阅读 · 0 评论 -
python filter/map/reduce的用法
filter(...) #filter函数中的函数的返回类型是bool型的 filter(function or None, sequence) -> list, tuple, or string Return those items of sequence for which function(item) is true. If function i原创 2017-01-13 08:48:04 · 388 阅读 · 0 评论