compile(source, filename,mode[, flags[, dont_inherit]])在python中的作用
提问人:杨紫红发布时间:2020-11-19
compile(source, filename,mode[, flags[, dont_inherit]])
将source编译为代码或者AST对象。代码对象能够通过exec语句来执行或者eval()进行求值。
1、参数source:字符串或者AST(Abstract Syntax Trees)对象。
2、参数 filename:代码文件名称,如果不是从文件读取代码则传递一些可辨认的值。
3、参数model:指定编译代码的种类。可以指定为 ‘exec’,’eval’,’single’。
4、参数flag和dont_inherit:这两个参数暂不介绍
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>