python 动态编译执行字符串代码

文章首发于我的简书账号,最近迁移到csdn博客

python 中
compile()方法支持将代码字符串编译为字节码,exec()方法可以执行代码字符串或者通过compile()转化的字节码。

compile()
https://www.runoob.com/python/python-func-compile.html
exec()
https://www.runoob.com/python/python-func-exec.html
eval()
http://www.runoob.com/python/python-func-eval.html

示例如下:

import traceback
s = "import time;print(time.localtime())"
try:
	code = compile(s, '', 'exec')
	exec(code)
except Exception as e:
	print(traceback.format_exc())

运行结果

这种动态编译在某些情景下很有用,比如游戏在线上时出了某个问题需要修复,在不重启的前提下就可以通过这种方式修复某些数据或者问题;或者修改一些简单的配置。
有篇文章讲得比较清晰:https://jin-yang.github.io/post/python-eval.html

你可能感兴趣的:(python)