Python exec() 函数
定义和用法
The exec()
函数执行指定的 Python 代码。
The exec()
函数接受大型代码块,与仅接受单个表达式的 eval()
函数不同。
语法
exec(object, globals, locals)
参数值
参数 | 描述 |
---|---|
object | 字符串或代码对象 |
globals | 可选。包含全局参数的字典 |
locals | 可选。包含局部参数的字典 |
The exec()
函数执行指定的 Python 代码。
The exec()
函数接受大型代码块,与仅接受单个表达式的 eval()
函数不同。
exec(object, globals, locals)
参数 | 描述 |
---|---|
object | 字符串或代码对象 |
globals | 可选。包含全局参数的字典 |
locals | 可选。包含局部参数的字典 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]