python怎么动态生成函数 python动态生成函数

主机教程 建站分享 2年前 (2022-10-27) 206次浏览

文章摘要:python怎么动态生成函数 python动态生成函数

在python中使用types.FunctionType方法动态生成函数,具体方法如下: from types […]

在python中使用types.FunctionType方法动态生成函数,具体方法如下:

from types import FunctionType, CodeType

code_1 = """

def uuid()->str:

import uuid

return str(uuid.uuid1())"""

foo_compile = compile(code_1 , "", "exec")

foo_code = [ i for i in foo_compile.co_consts if isinstance(i, CodeType)][0]

globals()['uuid'] = FunctionType(foo_code, globals())

func = globals()['uuid']

print(func())


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么动态生成函数 python动态生成函数
文章链接:http://www.7966.org/post/13755.html
转载请注明出处

喜欢 (0)