执行代码块:
x = 'name = "Bill"\nprint(name)'exec(x)
x = 'name = "Bill"\nprint(name)'
exec(x)
exec() 函数执行指定的 Python 代码。
exec()
exec() 函数接受大量代码块,这与 eval() 函数仅接受单个表达式不同。
exec(object, globals, locals)