丝路新程规划递归函数如下,调用 fun(6) 的结果是()
def fun(x): if x >= 6: return x * fun(x - 2) if x <= 1: return 1 return x * fun(x - 1)
720
144
180
48