码迷,mamicode.com
首页 >  
搜索关键字:python内置函数    ( 473个结果
Python内置函数(63)——super
英文文档: super([type[, object-or-type]]) Return a proxy object that delegates method calls to a parent or sibling class of type. This is useful for acces ...
分类:编程语言   时间:2016-12-02 02:45:05    阅读次数:251
python 内置函数 map filter reduce
...
分类:编程语言   时间:2016-12-01 22:22:07    阅读次数:206
Python内置函数之filter
一:filterHelponbuilt-infunctionfilterinmodule__builtin__: filter(...) filter(functionorNone,sequence)->list,tuple,orstring Returnthoseitemsofsequenceforwhichfunction(item)istrue.If functionisNone,returntheitemsthataretrue.Ifsequenceisatuple orstring,r..
分类:编程语言   时间:2016-11-27 20:34:19    阅读次数:202
Python-内置函数小结
内建函数,Python内置的函数(build in function),不需要引用其他包,一般成为BIF abs() 计算绝对值,abs(-10),接收number,返回一个number max() 求序列的的最大值(可迭代的),同时也可以比较一些数字 min() 求序列的最小值(可迭代的),同时也 ...
分类:编程语言   时间:2016-11-24 07:05:55    阅读次数:249
python 内置函数
chr 数字转换字母 r = chr(65)print(r) ord字母转换数字n = ord("A")print(n) random 函数 import random li = []for i in range(6): temp = random.randrange(65, 91) c = chr ...
分类:编程语言   时间:2016-11-20 13:53:24    阅读次数:188
python 内置函数!
chr 数字转换字母 r = chr(65)print(r) ord字母转换数字n = ord("A")print(n) random 函数 import random li = []for i in range(6): temp = random.randrange(65, 91) c = chr ...
分类:编程语言   时间:2016-11-20 13:29:47    阅读次数:190
python内置函数1
1.r=compile(s,"<string>","exec")compile()将字符串编译成python代码2.exec(r)执行python代码3.eval("8*6")eval("")里面只能执行表达式,执行eval()会有返回值,exec执行完无返回值.4.filter和mapfilter(函数,可迭代对象),返回一个符合条件的元素集合.对可迭代对象进行筛..
分类:编程语言   时间:2016-11-17 21:21:55    阅读次数:163
Python内置函数(62)——sum
英文文档: sum(iterable[, start]) Sums start and the items of an iterable from left to right and returns the total. start defaults to 0. The iterable‘s ite ...
分类:编程语言   时间:2016-11-17 10:34:52    阅读次数:236
Python内置函数(61)——str
英文文档: class str(object='') class str(object=b'', encoding='utf-8', errors='strict') Return a string version of object. If object is not provided, retu ...
分类:编程语言   时间:2016-11-17 10:05:32    阅读次数:214
Python内置函数(59)——sorted
英文文档: sorted(iterable[, key][, reverse]) Return a new sorted list from the items in iterable. Has two optional arguments which must be specified as ke ...
分类:编程语言   时间:2016-11-16 15:08:18    阅读次数:187
473条   上一页 1 ... 34 35 36 37 38 ... 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!