Python Built-ins Flashcards
Value, returned by a logical operation or directly assigned.
这是一个值,由一种逻辑操作或直接分配返回得到的。
False
Value used when representing the absence of a value or to initialize a variable which will be changed later. Returned by functions which do not explicitly return a value.
这是一个值,表示缺少一个值时使用它,或者用这个值初始化一个稍后要变更的变量时使用它。它是由不明确返回一个值的函数来返回的。
None
Value, returned by a logical operation.
这是一个值,由一种逻辑操作返回的值。
True
Constant, show module name. If it's not "\_\_main\_\_", the code is being used in an import. 连续的,显示模块名字。如果它不是”\_\_main\_\_”的话,代码一直用在一项import里。
__name__
List attributes of an item.
列出一个项目的所有属性。
dir
Iterate through a sequence and number each item.
迭代一个序列和每项数字。
enumerate
Exit Python (Command Line) interpreter. 退出Python(命令行)解释器。
exit
Convert a number into a decimal, usually so that division works properly.
转换一个数字到一种小数形式,通常除法正确地有效。
float
Get an attribute of an object by a name. Useful for introspection.
通过名字来得到一个对象的属性。对于反省是有用的。
getattr
Get Python docstring on object.
得到目标的Python文档字符串。
help
Show the location in the computer’s RAM where an object is stored.
显示计算机RAM的位置,该位置是存储目标的内存位置。
id
Convert a string into an integer number.
转换一个字符串到一个整数。
int
Get the number of elements in a sequence.
在一个序列中得到元素的数量。
len
A base on which other classes can inherit from.
一个根据其它类继承过来基础。
object
Open a file on disk, return a file object.
在磁盘上打开一个文件,返回一个文件对象。
open