计算e的值(精度为10**-6)sum,tmp = 1,1for i in range(1,20): tmp*=i sum += 1/tmp print("e的近似值(精度为10**-6)为%.6f"%sum)用Python求e的值 ...
確定! 回上一頁