'''打印一个数的阶乘'''
def fac(n): if n==0 or n==1: return 1 result=1 for i in range(1,n+1): result*=i return resultprint(fac(5))