Python/ref func exec

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python exec()函数

❮内置功能

执行一段代码:

    x = 'name 
    = "John"\nprint(name)'
exec(x)

定义和用法

The exec() 函数执行指定的Python代码。

The exec() 函数接受较大的代码块,这与 eval() 仅接受单个表达式的函数

句法

    exec(object, globals, locals)
  

参数值

参数 描述
object 字符串或代码对象
globals 可选的。包含全局参数的字典
locals 可选的。包含本地参数的字典

❮内置功能