11 2016 档案

摘要:英文文档: 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 阅读全文
posted @ 2016-11-17 08:59 十月狐狸 阅读(2405) 评论(0) 推荐(0) 编辑
摘要:英文文档: class str(object='') class str(object=b'', encoding='utf-8', errors='strict') Return a string version of object. If object is not provided, retu 阅读全文
posted @ 2016-11-17 08:53 十月狐狸 阅读(4768) 评论(0) 推荐(0) 编辑
摘要:英文文档: staticmethod(function) Return a static method for function. A static method does not receive an implicit first argument. The @staticmethod form 阅读全文
posted @ 2016-11-16 13:21 十月狐狸 阅读(1635) 评论(0) 推荐(0) 编辑
摘要:英文文档: sorted(iterable[, key][, reverse]) Return a new sorted list from the items in iterable. Has two optional arguments which must be specified as ke 阅读全文
posted @ 2016-11-16 12:53 十月狐狸 阅读(1012) 评论(0) 推荐(0) 编辑
摘要:英文文档: 说明: 1. 函数实际上是一个切片类的构造函数,返回一个切片对象。 2. 切片对象由3个属性start、stop、step组成,start和step默认值为None。切片对象主要用于对序列对象进行切片取对应元素。 3. 对应切片对象的3个属性start、stop、step,slice函数 阅读全文
posted @ 2016-11-15 11:33 十月狐狸 阅读(4340) 评论(0) 推荐(0) 编辑
摘要:英文文档: setattr(object, name, value) This is the counterpart of getattr(). The arguments are an object, a string and an arbitrary value. The string may 阅读全文
posted @ 2016-11-14 23:04 十月狐狸 阅读(1275) 评论(0) 推荐(0) 编辑
摘要:英文文档: 说明: 1. 传入一个可迭代对象,生成一个新的集合。 2. 不传入参数时,生成一个新的空集合。 3. 返回的集合是可以修改的。 阅读全文
posted @ 2016-11-14 22:52 十月狐狸 阅读(1215) 评论(0) 推荐(0) 编辑
摘要:英文文档: The behavior of round() for floats can be surprising: for example, round(2.675, 2) gives 2.67 instead of the expected 2.68. This is not a bug: i 阅读全文
posted @ 2016-11-14 00:14 十月狐狸 阅读(1663) 评论(0) 推荐(0) 编辑
摘要:英文文档: 说明: 1. 函数功能是反转一个序列对象,将其元素从后向前颠倒构建成一个新的迭代器。 2. 如果参数不是一个序列对象,则其必须定义一个__reversed__方法。 阅读全文
posted @ 2016-11-14 00:13 十月狐狸 阅读(6211) 评论(0) 推荐(0) 编辑
摘要:英文文档: 2. repr函数的结果一般能通过eval()求值的方法获取到原对象。 3. 对于一般的类型,对其实例调用repr函数返回的是其所属的类型和被定义的模块,以及内存地址组成的字符串。 4. 如果要改变类型的repr函数显示信息,需要在类型中定义__repr__函数进行控制。 阅读全文
posted @ 2016-11-13 22:58 十月狐狸 阅读(962) 评论(0) 推荐(0) 编辑
摘要:英文文档: 说明: 3. 可以传入一个起始整数和一个结束整数来初始化一个range类型,生成的range类型包含起始整数(包含),和结束整数(不包含)之间的所有整数。 4. 传入了起始整数和结束整数,还可以同时传入一个步进值来初始化一个range类型,生成的range类型包含起始整数(包含),和结束 阅读全文
posted @ 2016-11-12 09:22 十月狐狸 阅读(2017) 评论(0) 推荐(0) 编辑
摘要:英文文档: class property(fget=None, fset=None, fdel=None, doc=None) Return a property attribute. fget is a function for getting an attribute value. fset i 阅读全文
posted @ 2016-11-11 09:48 十月狐狸 阅读(1300) 评论(0) 推荐(0) 编辑
摘要:英文文档: print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) Print objects to the text stream file, separated by sep and followed by end. se 阅读全文
posted @ 2016-11-10 22:40 十月狐狸 阅读(3396) 评论(0) 推荐(0) 编辑
摘要:英文文档: 2. 所有的参数必须是数值类型。 3. 如果x,y有一个是浮点数,则结果将转换成浮点数。 4. 如果x,y都是整数,则结果也是整数,除非y是负数;如果y是负数,则结果返回的是浮点数,浮点数不能取模,所有可选参数z不能传入值。 5. 如果可选参数z传入了值,x,y必须为整数,且y不能为负数 阅读全文
posted @ 2016-11-10 09:33 十月狐狸 阅读(3336) 评论(0) 推荐(0) 编辑
摘要:英文文档: 2. 其功能和chr函数刚好相反。 阅读全文
posted @ 2016-11-10 08:55 十月狐狸 阅读(1646) 评论(0) 推荐(0) 编辑
摘要:英文文档: open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None) Open file and return a corresponding fil 阅读全文
posted @ 2016-11-09 15:08 十月狐狸 阅读(6044) 评论(0) 推荐(0) 编辑
摘要:英文文档: 2. 如果传入参数不是整数,则其必须是一个定义了__index__并返回整数函数的类的实例对象。 阅读全文
posted @ 2016-11-08 13:44 十月狐狸 阅读(2560) 评论(0) 推荐(0) 编辑
摘要:英文文档: class objectReturn a new featureless object. object is a base for all classes. It has the methods that are common to all instances of Python cla 阅读全文
posted @ 2016-11-08 11:25 十月狐狸 阅读(8618) 评论(0) 推荐(0) 编辑
摘要:英文文档: 2. 函数可以接收一个可选的default参数,传入default参数后,如果可迭代对象还有元素没有返回,则依次返回其元素值,如果所有元素已经返回,则返回default指定的默认值而不抛出StopIteration 异常。 阅读全文
posted @ 2016-11-07 10:51 十月狐狸 阅读(13639) 评论(0) 推荐(0) 编辑
摘要:英文文档: min(iterable, *[, key, default]) min(arg1, arg2, *args[, key]) Return the smallest item in an iterable or the smallest of two or more arguments. 阅读全文
posted @ 2016-11-07 10:12 十月狐狸 阅读(7396) 评论(0) 推荐(0) 编辑
摘要:英文文档: class memoryview(obj) 说明: 1. 函数功能返回内存查看对象,实际上是内存查看对象(Momory view)的构造函数。 2. 所谓内存查看对象,是指对支持缓冲区协议的数据进行包装,在不需要复制对象基础上允许Python代码访问。 3. Python内置对象中支持缓 阅读全文
posted @ 2016-11-06 23:25 十月狐狸 阅读(5566) 评论(0) 推荐(0) 编辑
摘要:英文文档: max(iterable, *[, key, default]) max(arg1, arg2, *args[, key]) Return the largest item in an iterable or the largest of two or more arguments. I 阅读全文
posted @ 2016-11-06 16:09 十月狐狸 阅读(9828) 评论(1) 推荐(1) 编辑
摘要:英文文档: 2. 当传入多个可迭代对象时,函数的参数必须提供足够多的参数,保证每个可迭代对象同一索引的值均能正确传入函数。 3. 当传入多个可迭代对象时,且它们元素长度不一致时,生成的迭代器只到最短长度。 4. map函数是一个典型的函数式编程例子。 阅读全文
posted @ 2016-11-05 17:55 十月狐狸 阅读(3520) 评论(4) 推荐(2) 编辑
摘要:英文文档: locals() Update and return a dictionary representing the current local symbol table. Free variables are returned by locals() when it is called i 阅读全文
posted @ 2016-11-04 21:28 十月狐狸 阅读(1504) 评论(0) 推荐(0) 编辑
摘要:英文文档: class list([iterable]) Rather than being a function, list is actually a mutable sequence type, as documented in Lists and Sequence Types — list, 阅读全文
posted @ 2016-11-04 20:07 十月狐狸 阅读(1479) 评论(0) 推荐(0) 编辑
摘要:英文文档: 2. 如果参数为其它类型,则其必须实现__len__方法,并返回整数,否则报错。 阅读全文
posted @ 2016-11-04 19:55 十月狐狸 阅读(2263) 评论(0) 推荐(1) 编辑
摘要:英文文档: iter(object[, sentinel]) Return an iterator object. The first argument is interpreted very differently depending on the presence of the second a 阅读全文
posted @ 2016-11-03 23:48 十月狐狸 阅读(2083) 评论(2) 推荐(0) 编辑
摘要:英文文档: 3. 任何一个类都是自己类的子类,即class和calssinfo传入相同类型时,返回True。 4. 如果classinfo类型对象,是多个类型对象组成的元组,如果class类型对象是元组的任一类型对象的子类,则返回True,否则返回False。 5. 如果classinfo类型对象, 阅读全文
posted @ 2016-11-03 23:10 十月狐狸 阅读(1374) 评论(0) 推荐(0) 编辑
摘要:英文文档: isinstance(object, classinfo) Return true if the object argument is an instance of the classinfo argument, or of a (direct, indirect or virtual) 阅读全文
posted @ 2016-11-03 22:16 十月狐狸 阅读(5586) 评论(0) 推荐(1) 编辑
摘要:英文文档: class int(x=0) class int(x, base=10) Return an integer object constructed from a number or string x, or return 0 if no arguments are given. If x 阅读全文
posted @ 2016-11-03 22:00 十月狐狸 阅读(5930) 评论(0) 推荐(2) 编辑
摘要:英文文档: input([prompt]) If the prompt argument is present, it is written to standard output without a trailing newline. The function then reads a line f 阅读全文
posted @ 2016-11-02 13:45 十月狐狸 阅读(2863) 评论(0) 推荐(0) 编辑
摘要:英文文档: 阅读全文
posted @ 2016-11-01 22:38 十月狐狸 阅读(838) 评论(0) 推荐(0) 编辑