Python之eval和exec
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之eval和exec相关的知识,希望对你有一定的参考价值。
eval可以执行字符串形式的表达式
In [1]: eval("1 + 2 + 3") Out[1]: 6 In [2]: eval("a + 1", {"a": 99}) Out[2]: 100
exec执行字符串形式的代码
In [3]: exec("print(‘hello world‘)") hello world In [4]: exec("print(“hello world“)") File "<string>", line 1 print(“hello world“) ^ SyntaxError: invalid character in identifier
内外层双引号不能相同,否则会报错
以上是关于Python之eval和exec的主要内容,如果未能解决你的问题,请参考以下文章