python 其他语句

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
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容