1. 首页
  2. 数据库
  3. 其它
  4. Python函数学习笔记

Python函数学习笔记

上传者: 2020-12-31 17:33:22上传 PDF文件 56.49KB 热度 32次
局部名字静态检测 Python探测局部作用域的时候:是在python编译代码时检测,而不是通过他们在运行时的赋值。 正常的情况下,没在函数中复制的名字将在包含它的模块中查找: >>> x=99 >>> def selector(): ... print x ... >>> selector() 99 但是: >>> def selector(): ... print x ... x=100 ... >>> selector() Traceback (most recent call last): File “”, line 1, in ? File “”, line 2, in sel
用户评论