用户登录
用户注册

分享至

从函数内将变量插入全局命名空间?

  • 作者: 芥末46487171
  • 来源: 51数据库
  • 2023-01-31

问题描述

是否可以编写一个将对象插入全局命名空间并将其绑定到变量的函数?例如:

Is it possible to write a function which inserts an object into the global namespace and binds it to a variable? E.g.:

>>> 'var' in dir()
False
>>> def insert_into_global_namespace():
...        var = "an object"
...        inject var
>>> insert_into_global_namespace()
>>> var
"an object"

推荐答案

可以,使用global语句即可.

def func():
    global var
    var = "stuff"
软件
前端设计
程序设计
Java相关