Python eval() 函数
定义和用法
The eval()
函数评估指定的表达式,如果表达式是合法的 Python 语句,它将被执行。
语法
eval(expression, globals, locals)
参数值
参数 | 描述 |
---|---|
expression | 一个字符串,将被评估为 Python 代码 |
globals | 可选。包含全局参数的字典 |
locals | 可选。包含局部参数的字典 |
The eval()
函数评估指定的表达式,如果表达式是合法的 Python 语句,它将被执行。
eval(expression, globals, locals)
参数 | 描述 |
---|---|
expression | 一个字符串,将被评估为 Python 代码 |
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]