本文介绍了为什么函数中的 exec 中的导入不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以将一个导入语句放入一个字符串中,执行它,它就可以工作(打印一个随机数字):

I can put an import statement in a string, exec it, and it works (prints a random digit):

code = """
import random
def f():
    print random.randint(0,9)
"""

def f():
    pass

exec code
f()

现在,如果我将 exec codef() 放在它们自己的函数中并调用它,它不起作用.

Now, if I put exec code and f() in their own function and call it, it doesn't work.

def test():
    exec code
    f()

test()

它说NameError: global name 'random' is not defined.

推荐答案

这个怎么样:

def test():
    exec (code, globals())
    f()

这篇关于为什么函数中的 exec 中的导入不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 07:00