python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > compile() 函数实用示例

关于Python中compile() 函数简单实用示例详解

作者:门前大橋下丶

这篇文章主要介绍了关于compile() 函数简单实用示例,compile() 函数将一个字符串编译为字节代码,compile将代码编译为代码对象,应用在代码中可以提高效率,本文通过示例代码给大家介绍的非常详细,需要的朋友可以参考下

compile() 函数是什么

compile() 函数将一个字符串编译为字节代码。
compile将代码编译为代码对象,应用在代码中可以提高效率。

语法

compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)

参数

返回表达式执行结果。

示例

首先code下新建demo.py

from code.cal import add,mul
from code.sqrt import sqrt
__all__ =[ "add","mul","sqrt"]

cal.py

def add(a,b):
	return a+b
def mul(a,b):
	return a*b

sqrt.py

def sqrt(a):
	return a**2

编写调用脚本test.py

import traceback
import os
import requests
import threading
import time
import json
import logging
log=logging.getLogger()
def compile_funcs(codefile,funname_list):
    """
    Args:
        codefile: Path of Python's Code file
        funname_list: list of function names
    Return: dict of func info     
    """
    try:
    	#读取代码
        with open(codefile) as f:
            code=f.read()
        #将字符串编译为字节代码
        methods_obj=compile(code,"","exec")
        scope = {}
        '''
        exec函数族的作用是根据指定的文件名找到可执行文件,并用它来取代调用进程的内容;
        换句话说,就是在调用进程内部执行一个可执行文件。这里的可执行文件既可以是二进制文件,
        也可以是任何Linux下可执行的脚本文件
        '''
        exec(methods_obj,scope)
        fun_object={}
        for name in funname_list:
            fun_obj= scope.get(name,None)
            fun_object[name] = fun_obj
        return fun_object
    except Exception as e:
        traceback.print_exc(e)
        return None
#函数名称
func_lists=['add','mul','sqrt']
#传入code下的demo.py
func_dict= compile_funcs("./code/demo.py",func_lists)
#获取返回对象
add = func_dict['add']
mul = func_dict['mul']
sqrt = func_dict['sqrt']
#传参调用
c = add(2,3)
d = mul(3,3)
e = sqrt(5)
print(f"add(2,3)={c}")
print(f"mul(3,3)={d}")
print(f"sqrt(5)={e}")

结果:

add(2,3)=5
mul(3,3)=9
sqrt(5)=25

总结

compile() 函数的应用场景包括:

1、动态执行代码:可以将源代码字符串编译为代码对象,然后使用exec()函数执行。
2、动态求值表达式:将单个表达式编译为代码对象,然后使用eval()函数求值。
3、AST分析和修改:将源代码字符串编译为AST对象,然后使用ast模块进行分析和修改操作,例如静态代码分析、代码转换等。
在使用某些代码需要提炼出公共的代码块是可以使用,方便后续的使用和添加;

到此这篇关于关于compile() 函数简单实用示例的文章就介绍到这了,更多相关compile() 函数实用示例内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文