Python: How can I run eval() in the local scope of a function

匿名 (未验证) 提交于 2019-12-03 01:54:01

问题:

I try to use eval() in a local scope of a function. However it always evaluate in the global scope.

Self contained examples:

1- This code works:

var1 = 1 var2 = 2 var3 = 3     myDict = dict((name, eval(name)) for name in ["var1",                                               "var2",                                               "var3"]) print(myDict["var1"]) 

2- Throws NameError for lvar1

def test1():    lvar1 = 1    lvar2 = 2    lvar3 = 3    myDict = dict((name, eval(name)) for name in ["lvar1",                                                  "lvar2",                                                  "lvar3"])    print(myDict["lvar1"]) 

3- Same outcome as 2.

def test2():     lvar1 = 1     lvar2 = 2     lvar3 = 3     myDict = dict((name, eval(name), locals()) for name in ["lvar1",                                                             "lvar2",                                                             "lvar3"])     print(myDict["lvar1"]) 

回答1:

Save the result of locals() (or vars()) call to return the function's local scope. Otherwise, locals() inside the generator expression will return the gen-expr's local scope.

def test3():     lvar1 = 1     lvar2 = 2     lvar3 = 3     scope = locals()     myDict = dict((name, eval(name, scope)) for name in [                   "lvar1", "lvar2", "lvar3"])     print(myDict["lvar1"]) 

BTW, dictionary creation is not necessary:

myDict = locals()  # or vars() 


回答2:

First of all it's important to read this:

The expression argument is parsed and evaluated as a Python expression (technically speaking, a condition list) using the globals and locals dictionaries as global and local namespace. If the globals dictionary is present and lacks ‘__builtins__’, the current globals are copied into globals before expression is parsed. This means that expression normally has full access to the standard __builtin__ module and restricted environments are propagated. If the locals dictionary is omitted it defaults to the globals dictionary. If both dictionaries are omitted, the expression is executed in the environment where eval() is called. The return value is the result of the evaluated expression`.

To start with it is important to note that a generator expression has its own scope(true for a dict-comprehension as well), hence it has its own locals() dictionary.

  1. This worked because in global scope both globals() and locals() dict points to the same dictionary hence the dict constructor can access those variables.

  2. Here we are again calling eval() with no globals() and locals() dict hence it ends up using the global scope and its own local scope(which is empty) and there are no such variable available in any of these scopes.

  3. Remember generators have their own scope so calling locals() here barely makes any difference, it's an empty dict.

Solution:

def test1():    lvar1 = 1    lvar2 = 2    lvar3 = 3    test1_locals = locals()    myDict = dict((name, eval(name, test1_locals)) for name in ["lvar1",                                                  "lvar2",                                                  "lvar3"])    print myDict    print(myDict["lvar1"]) 

This worked because we captured test1's locals() in a variable and then used that dictionary inside of the dictionary comprehension, so it now has access to those variables.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!