python内置函数compile 可以将字符串编译成字节代码或者AST对象,字节代码对象可以被exec() 或 eval() 执行。
compile(source, filename, mode, flags=0, dont_inherit=False, optimize=- 1)
字节代码或AST对象
单一表达式
>>> exp = "3*3 + 7 + 8"
>>> code = compile(exp, '<string>', 'eval')
>>> code
<code object <module> at 0x2b9c88626ed0, file "<string>", line 1>
>>> eval(exp)
24
python语句
code_string = """
def test():
print("ok")
test()
"""
code = compile(code_string, '<string>', 'exec')
exec(code)
执行exec(code) 就如同执行了code_string所代表的代码,test函数会被调用,输出"ok"。
如果source只是一个表达式,那么mode应当使用eval,执行编译后的字节码也用eval;如果source是python语句,那么mode应当使用exec,执行编译后的字节码也要用exec。
最后举一个source为ast对象的例子
import ast
ast_object = ast.parse("print('Hello world!')")
code = compile(ast_object, '<string>', 'exec')
exec(code)
程序最终输出Hello world!
QQ交流群: 211426309