摘要: 1 # -*- coding: utf-8 -*- 2 3 def fun(m, n): 4 return m * n 5 6 7 def exec_func(func: str): 8 exec_data = {} 9 exec(f'ret = {func}', globals(), exec_d 阅读全文
posted @ 2022-07-02 16:37 zanze 阅读(1474) 评论(0) 推荐(0)