博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python内置函数(55)——globals
阅读量:5172 次
发布时间:2019-06-13

本文共 706 字,大约阅读时间需要 2 分钟。

英文文档:

globals
() Return a dictionary representing the current global symbol table. This is always the dictionary of the current module (inside a function or method, this is the module where it is defined, not the module from which it is called).
  返回当前作用域内全局变量和其组成的字典
说明:   1. 返回当前作用域内全局变量的字典。
 
>>> globals(){'__spec__': None, '__package__': None, '__builtins__': 
, '__name__': '__main__', '__doc__': None, '__loader__':
}>>> a = 1>>> globals() #多了一个a{'__spec__': None, '__package__': None, '__builtins__':
, 'a': 1, '__name__': '__main__', '__doc__': None, '__loader__':
}

转载于:https://www.cnblogs.com/lincappu/p/8145196.html

你可能感兴趣的文章
dubbo序列化hibernate.LazyInitializationException could not initialize proxy - no Session懒加载异常的解决...
查看>>
jQuery中的事件绑定的几种方式
查看>>
泥塑课
查看>>
setImageBitmap和setImageResource
查看>>
springMVC4 注解配置实例
查看>>
单片机编程
查看>>
Filter in Servlet
查看>>
Linux--SquashFS
查看>>
Application Pool Identities
查看>>
2017-3-24 开通博客园
查看>>
【MySQL性能优化】MySQL常见SQL错误用法
查看>>
Vue2全家桶之一:vue-cli(vue脚手架)超详细教程
查看>>
Struts 2 常用技术
查看>>
树形DP
查看>>
python flask解决上传下载的问题
查看>>
语法测试
查看>>
CES1
查看>>
java webcontroller访问时报415错误
查看>>
qcow2、raw、vmdk等镜像格式
查看>>
Jzoj5455【NOIP2017提高A组冲刺11.6】拆网线
查看>>