python

python怎么动态生成函数

养鱼的猫咪
781
2021-03-05 13:57:47
栏目: 编程语言
Python开发者服务器,限时0元免费领! 查看>>

python怎么动态生成函数

在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())

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

相关推荐:python如何动态生成函数名

0
看了该问题的人还看了