以下函数要实现5的阶乘,则划线处应补充选项为? ( )
def fun(i):
if i<=1:
return 1
else:
return
print(fun(5))
i*(i-1)*(i-2)*...*2*1
(i-1)*fun(i)
i*fun(i+1)
i*fun(i-1)