pass 语句
pass 是一个空操作 —— 当它被执行时,什么都不发生。
它适合当语法上需要一条语句但并不需要执行任何代码时用来临时占位,例如:
pass
# 什么也不做的函数
def f():pass
# 没有任何自定义属性的类
class A:pass
class 定义类
class 语句用来定义类,语法如下:
@assignment_expression
class classname(argument_list):
suite
其中的装饰器 @assignment_expression
,基类参数及圆括号 (argument_list)
是可选项。
类定义是一条可执行语句。它执行时会将类名称 classname 绑定到一个新建的类对象。
没有继承基类参数 argument_list 的类默认继承自基类 object。下列是一个必选参数定义的类,默认继承自 object:
# 创建一个类名为 A 的类
class A: pass
A.__bases__ # 查看基类
(object,)
# 创建一个类 B 继承自 int 和 A
class B(int, A):
pass
B.__bases__
(int, __main__.A)
类也可以被装饰,就像装饰函数一样,装饰器表达式的求值规则与函数装饰器相同(详见 def 定义函数)。结果随后会被绑定到类名称。
@str
@type
class C: pass
C
"<class 'type'>"
大致相当于:
class C: pass
C = str(type(C))
C
"<class 'type'>"
raise 语句
raise 语句用来引发异常。语法如下:
raise expression from expression
如果不带表达式,raise 会重新引发当前作用域内最后一个激活的异常。如果当前作用域内没有激活的异常,将会引发 RuntimeError 来提示错误。
raise
---------------------------------------------------------------------------
RuntimeError Traceback (most recent call last)
<ipython-input-1-9c9a2cba73bf> in <module>
----> 1 raise
RuntimeError: No active exception to reraise
raise 会将第一个表达式求值为异常对象。它必须为 BaseException 的子类或实例。如果它是一个类,当需要时会通过不带参数地实例化该类来获得异常的实例。
type(ZeroDivisionError)
type
raise ZeroDivisionError # 无提示信息
---------------------------------------------------------------------------
ZeroDivisionError Traceback (most recent call last)
<ipython-input-2-798b08d1683c> in <module>
----> 1 raise ZeroDivisionError # 无提示信息
ZeroDivisionError:
raise ZeroDivisionError('分母不能为 0') # 自定义提示信息
---------------------------------------------------------------------------
ZeroDivisionError Traceback (most recent call last)
<ipython-input-17-950b4accf1f2> in <module>
----> 1 raise ZeroDivisionError('分母不能为 0') # 自定义提示信息
ZeroDivisionError: 分母不能为 0
from 子句用于异常串连:如果有该子句,则第二个表达式必须为另一个异常类或实例,它将被关联到所引发的异常:
raise IndexError("索引错误") from NameError('名称错误')
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
NameError: 名称错误
The above exception was the direct cause of the following exception:
IndexError Traceback (most recent call last)
<ipython-input-18-124f83b49e6f> in <module>
----> 1 raise IndexError("索引错误") from NameError('名称错误')
IndexError: 索引错误
try:
print(1 / 0)
except Exception as e:
raise RuntimeError("Something bad happened") from e
---------------------------------------------------------------------------
ZeroDivisionError Traceback (most recent call last)
<ipython-input-13-83aaca0b7e7f> in <module>
1 try:
----> 2 print(1 / 0)
3 except Exception as e:
ZeroDivisionError: division by zero
The above exception was the direct cause of the following exception:
RuntimeError Traceback (most recent call last)
<ipython-input-13-83aaca0b7e7f> in <module>
2 print(1 / 0)
3 except Exception as e:
----> 4 raise RuntimeError("Something bad happened") from e
RuntimeError: Something bad happened
如果一个异常在异常处理器或 finally 中被引发,类似的机制会隐式地发挥作用:
try:
print(1 / 0)
except:
raise RuntimeError("Something bad happened")
---------------------------------------------------------------------------
ZeroDivisionError Traceback (most recent call last)
<ipython-input-16-5576c5c08e42> in <module>
1 try:
----> 2 print(1 / 0)
3 except:
ZeroDivisionError: division by zero
During handling of the above exception, another exception occurred:
RuntimeError Traceback (most recent call last)
<ipython-input-16-5576c5c08e42> in <module>
2 print(1 / 0)
3 except:
----> 4 raise RuntimeError("Something bad happened")
RuntimeError: Something bad happened
try:
print(1 / 0)
finally:
raise RuntimeError("Something bad happened")
---------------------------------------------------------------------------
ZeroDivisionError Traceback (most recent call last)
<ipython-input-15-8b172672db5a> in <module>
1 try:
----> 2 print(1 / 0)
3 finally:
ZeroDivisionError: division by zero
During handling of the above exception, another exception occurred:
RuntimeError Traceback (most recent call last)
<ipython-input-15-8b172672db5a> in <module>
2 print(1 / 0)
3 finally:
----> 4 raise RuntimeError("Something bad happened")
RuntimeError: Something bad happened
assert 语句
assert 语句是在程序中插入调试性断言的简便方式。在表达式条件为 False 的时候触发异常。
简单形式为:assert expression
。
assert 1 + 1 == 2
assert 1 + 1 != 2
---------------------------------------------------------------------------
AssertionError Traceback (most recent call last)
<ipython-input-2-5cd89e6dd50b> in <module>
----> 1 assert 1 + 1 != 2
AssertionError:
扩展形式为:assert expression1, expression2
。expression2 通常是提示信息。
assert 1 + 1 != 2, '计算错误'
---------------------------------------------------------------------------
AssertionError Traceback (most recent call last)
<ipython-input-7-3b85a53ff241> in <module>
----> 1 assert 1 + 1 != 2, '计算错误'
AssertionError: 计算错误
for i in range(5):
try:
assert i % 2 == 0, f'{i}是奇数'
print(i)
except AssertionError as a:
print(a)
0
1是奇数
2
3是奇数
4
global 语句
global 语句作用于整个当前代码块,它后面所列出的标识符将被解读为全局变量。
在 global 语句中列出的名称不得在同一代码块内该 global 语句之前的位置中使用。
当前的实现虽然并未强制要求,但在 global 语句中列出的名称不得被定义为正式形参,不也得出现于 for 循环的控制目标、class 定义、函数定义、import 语句 或 变量标注之中。
举例如下:
def f():
a = 0
f() # 调用函数,对 a 赋值
a # a 是局部变量,不可访问
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-5-251a24e05273> in <module>
3
4 f() # 调用函数,对 a 赋值
----> 5 a # a 是局部变量,不可访问
NameError: name 'a' is not defined
def f():
global a # 将 a 声明为全局变量
a = 0
f() # 调用函数,对 a 赋值
print(a) # a 已经是全局变量
del a
0
def f():
a = 1 # 同一代码块中,不可在 global 前使用
global a # 将 a 声明为全局变量
a = 0
File "<ipython-input-9-51bc7826eb42>", line 3
global a # 将 a 声明为全局变量
^
SyntaxError: name 'a' is assigned to before global declaration
a = 1 # 与 global 不在一个代码块
def f():
global a, b # 将 a, b 声明为全局变量
a = 0 # a 被重新赋值
b = 1
f() # 调用函数,对 b 赋值,对 a 重新赋值
print(a,b)
del a,b
0 1
nonlocal 语句
nonlocal 语句会使得所列出的名称指向在它之前已经存在的,和它最近并且在包含它的作用域中绑定,除全局变量以外的变量。
这种功能很重要,因为绑定的默认行为是先搜索局部命名空间。这个语句允许被封装的代码重新绑定局部作用域以外且非全局(模块)作用域当中的变量。
举例如下:
a = '全局'
def f():
a = 'f' # f 中已经存在的 a, 包含 f2
def f1():
a = 'f1' # f1 中的局部变量
def f2():
nonlocal a # 和他最近且包含的是 'f'
a = 'f2'
def f3():
global a
a = 'f3'
# 调用 f1 不改变 a = 'f'
f1()
print(a)
# 调用 f2, nonlocal 将 a = 'f' 重新绑定为 a = 'f2'
f2()
print(a)
# 调用 f3, global 将 a 声明为全局变量,
# 并将 a = '全局' 重新绑定为 a = 'f3'
# 但在 f 这个局部中,a 仍然是 'f2'
f3()
print(a)
f() # 调用 f 使绑定都生效
print(a)
f
f2
f2
f3
# 不存在不可以绑定
def f():
nonlocal a
a = 1
f()
File "<ipython-input-3-3706e217f701>", line 2
nonlocal a
^
SyntaxError: no binding for nonlocal 'a' found
# 不是包含它的作用域,不可以绑定
def f():
def f1():
a = 0
f1()
nonlocal a
a = 1
f()
File "<ipython-input-4-a036260d029b>", line 5
nonlocal a
^
SyntaxError: no binding for nonlocal 'a' found
# 全局变量,不可以绑定
a = 0
def f():
nonlocal a
a = 1
f()
File "<ipython-input-5-87297c0b0eeb>", line 4
nonlocal a
^
SyntaxError: no binding for nonlocal 'a' found