背景
今天在看一篇介绍Python生成器的文章的时候无心插柳了解到一个很有趣的Python标准库dis,可以用于查看函数的汇编指令,从而理解Python代码的执行机制。
相关技术
Python3, dis模块
代码
In [50]: dis(lambda x: x ** 2 if isinstance(x, int) else "Hello, {}".format(x) if isinstance(x, str)
...: else "Unknown type.")
1 0 LOAD_GLOBAL 0 (isinstance)
3 LOAD_FAST 0 (x)
6 LOAD_GLOBAL 1 (int)
9 CALL_FUNCTION 2 (2 positional, 0 keyword pair)
12 POP_JUMP_IF_FALSE 23
15 LOAD_FAST 0 (x)
18 LOAD_CONST 1 (2)
21 BINARY_POWER
22 RETURN_VALUE
>> 23 LOAD_GLOBAL 0 (isinstance)
26 LOAD_FAST 0 (x)
29 LOAD_GLOBAL 2 (str)
32 CALL_FUNCTION 2 (2 positional, 0 keyword pair)
35 POP_JUMP_IF_FALSE 51
38 LOAD_CONST 2 ('Hello, {}')
41 LOAD_ATTR 3 (format)
44 LOAD_FAST 0 (x)
47 CALL_FUNCTION 1 (1 positional, 0 keyword pair)
50 RETURN_VALUE
>> 51 LOAD_CONST 3 ('Unknown type.')
54 RETURN_VALUE
感想
Python标准库博大精深啊。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。