Python Key Words Flashcards
Logical operator to test whether two things are both True.
逻辑操作符,用来测试两个事物是否都是真的。
and
Assign a file object to a variable. Used with with. Let your code refer to a module under a different name (also called on alias). Used with import. 把一个文件分配给一个变量,与with一起用。让你的代码指向一个模块的别名,与import一起用。
as
Stop execution of a loop.
停止一个循环的执行。
break
Define a custom object.
定义一个定制的对象。
class
Skip balance of loop and begin a new iteration.
跳过循环的平衡并且开始一个新的迭代。
continue
Define a function.
定义一个函数。
def
Add conditional test to an if clause.
增加条件测试到一个if子句中。
elif
Add an alternative code block.
增加一段可选的代码块。
else
Create a loop which iterates through elements of a list (or other iterable).
建立一个迭代一系列元素的循环,或建立一个迭代可迭代的元素的循环。
for
Import specific functions from a module without importing the whole module. 导入一个模块里具体的函数而不是导入整个模块。
from
Make a variable global in scope. (If a variable is defined in the main section, you can change its value within a function.)
在范围里制作一个全局变量。(如果一个变量定义在main部分中,你可以在一个函数里改变变量的值。)
global
Create a condition. If the condition is True, the associated code block is executed. Otherwise, any elif commands are processed. If there are none, or none are satisfied, execute the else block if there is one.
建立一个条件。如果条件是真实的,与其有关系的代码块就会执行。然而任何elif命令都会处于过程中。如果这里什么也没有或者满足属于none的情况,会执行else代码块部分,如果没有else代码块就什么也不执行。
if
Use code defined in another file without retyping it.
使用定义在其它文件中的代码而不用重复敲代码了。
import
Used to test whether a given value is one of the elements of an object.
用来测试一个给出的值是否是一个对象元素中的一个。
in
Used to test whether names reference the same object.
用来测试名字是否指的是相同的对象。
is