我想做以下事情。脚本有一些 python 代码作为字符串(保存在变量中),是否可以运行该代码?
好吧,我知道一种方法,将该字符串写入文件并运行它,但我不想要那样。在不创建任何额外文件的情况下,是否可以运行它?
这是一个例子:
假设我的 python 文件有以下内容
#this is a main python file
content = ''' print 'hello!'
print 'this is from sub python code' '''
print 'from main python'
内容字符串有一个 python 代码 & 我想运行它。是否可以 ?
希望我清楚。谢谢 !