用递归算法实现5的阶乘,则下方的程序中横线上需要的代码是?( )
def func(n):
if n<_______:
return func(n+1)*n
else:
return 1
print(func(1))
4
5
6
7