sqrt函數(shù)可以使用math庫。譬如:
importmatha=4printmath.sqrt(4)#2
也可以直接利用python的**運算符
a=8a**(1/3)#開3次方相當(dāng)于1/3次乘方結(jié)果是2math中其他常用的數(shù)學(xué)函數(shù):ceil(x)取頂floor(x)取底fabs(x)取絕對值factorial(x)階乘hypot(x,y)sqrt(x*x+y*y)pow(x,y)x的y次方sqrt(x)開平方log(x)log10(x)trunc(x)截斷取整數(shù)部分isnan(x)判斷是否NaN(notanumber)degree(x)弧度轉(zhuǎn)角度radians(x)角度轉(zhuǎn)弧度。
sqrt函數(shù)原型:在VC6.0中的math.h頭文件的函數(shù)原型為doublesqrt(double);所以調(diào)用的是math庫。