英文文档: 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
一: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内置的函数(build in function),不需要引用其他包,一般成为BIF abs() 计算绝对值,abs(-10),接收number,返回一个number max() 求序列的的最大值(可迭代的),同时也可以比较一些数字 min() 求序列的最小值(可迭代的),同时也 ...
分类:
编程语言 时间:
2016-11-24 07:05:55
阅读次数:
249
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
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
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
英文文档: 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
英文文档: 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
英文文档: 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