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
Reimplementation of print keyword, but as a function. Need to import from the future to use it.
重新部署了print关键字,但变成了一个函数。需要从下一步使用它来导入。
Gives numbers between the lower and upper limits specified (including the lower, but excluding the upper limit). A step may be specified.
从小到大给出一些由描述决定的数字(包含较小的数字,但不包含较大的数字)。可以描述一个步幅。
range
Get some text as a string from the user, with an optional prompt.
从用户那得到的文本变成字符串,可以含有一个可选提示内容。
raw_input
Convert an object (usually a number) into a string (usually for printing).
转换一个目标(通常是一个数字)到一个字符串(通常为了打印)。
str
Give the type of the specified object.
给出描述对象的类型。
type