关于下列代码的描述, 错误的是? ( )
def fact(n) :
s=1
for i in range(1, n+1) :
s*=i
return s
s 不能在函数外使用
range() 函数是 Python 内置函数
如果 n=4, 返回的值为 24
代码中 n 是可选参数