摘要: 1,python内置函数 1.1 作用域相关 locals :函数会以字典的类型返回当前位置的全部局部变量。 globals:函数以字典的类型返回全部全局变量。 a = 1 b = 2 print(locals()) print(globals()) # 执行结果一样 def func(argv): 阅读全文
posted @ 2018-08-21 21:34 温而新 阅读(262) 评论(0) 推荐(1) 编辑