def f (x) :
if x == 1 :
return 1
else :
return x * f ( x - 1 )
s = 0
for i in range( 1 , 6 ):
s += f ( i )
print ( s )
执行该程序段后,变量s的值是( )
微信扫码预览、分享更方便