视频版教程 Python3零基础7天入门实战视频教程
Python还支持使用函数作为其他函数的返回值
def test(bol):if bol:return addelse:return subdef add(x, y):return x + ydef sub(x, y):return x - yb1 = test(True)
print(b1, b1(1, 2))
b2 = test(False)
print(b2, b2(1, 2))
运行输出:
<function add at 0x000002AFF9B4BC40> 3
<function sub at 0x000002AFF9CB0540> -1