如何调用fun3计算出阶乘的除法这样的算法是不是有错误 下一步该怎么编写
def func3(a): if a == 1or a == 0: return 1 else: return a * func3(a-1) print(func3(5))