码迷,mamicode.com
首页 > 编程语言 > 详细

Python exec 内置语句

时间:2020-07-28 14:03:13      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:文件   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

参数

  • obj -- 要执行的表达式。

返回值

exec 返回值永远为 None。


实例

以下展示了使用 exec 的实例:

实例 1

>>>exec print "Hello World" Hello World # 单行语句字符串 >>> exec "print ‘runoob.com‘" runoob.com # 多行语句字符串 >>> exec """for i in range(5): ... print "iter time: %d" % i ... """ iter time: 0 iter time: 1 iter time: 2 iter time: 3 iter time: 4

实例 2

x = 10 expr = """ z = 30 sum = x + y + z print(sum) """ def func(): y = 20 exec(expr) exec(expr, {x: 1, y: 2}) exec(expr, {x: 1, y: 2}, {y: 3, z: 4}) func()

输出结果:

60
33
34

Python exec 内置语句

标签:文件   psi   comment   pos   string   target   exp   fun   cfile   

原文地址:https://www.cnblogs.com/yc10086/p/13390017.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!