标签:文件 psi comment pos string target exp fun cfile
exec 执行储存在字符串或文件中的Python语句,相比于 eval,exec可以执行更复杂的 Python 代码。岭组词 https://www.cgewang.com/post/2205.html
需要说明的是在 Python2 中exec不是函数,而是一个内置语句(statement),但是Python 2中有一个 execfile() 函数。可以理解为 Python 3 把 exec 这个 statement 和 execfile() 函数的功能够整合到一个新的 exec() 函数中去了。
以下是 exec 的语法:https://www.cgewang.com/post/2270.html
exec obj
exec 返回值永远为 None。
以下展示了使用 exec 的实例:
输出结果:
60
33
34
标签:文件 psi comment pos string target exp fun cfile
原文地址:https://www.cnblogs.com/yc10086/p/13390017.html