# 定义一个函数,接受其它函数输入 def test_func(compute): result = compute(1, 2) return print(f"结果是:{result}") test_func(lambda x, y: x - y)