您好,登錄后才能下訂單哦!
import math
print(math.trunc(3.485))#取整數(shù)
print(math.pow(3,4))#乘方
print(math.pi)
print(math.sqrt(100))#開(kāi)方
print(math.log(10))#e為底,10的自然對(duì)數(shù)
print(math.log(10,3))#e為底,10的自然對(duì)數(shù)
3
81.0
3.141592653589793
10.0
2.302585092994046
2.095903274289385
import math
print(math.fmod(20,3))#取余
print(math.fsum([12,56,3,4]))#迭代器求和
print(math.factorial(5))#階乘
print(math.fabs(-9.23))#取絕對(duì)值
print(math.exp(5))#e(2.71829)的5次方
2.0
75.0
120
9.23
148.4131591025766
import math
print(math.degrees(math.pi/4))#弧度轉(zhuǎn)角度
print(math.tan(math.pi/6))#弧度的正切值
print(math.cos(5))##弧度的余弦值
print(math.floor(9.23))#<=x的最大值
print(math.ceil(9.23))#>=x的最小值
45.0
0.5773502691896256
0.2836621854632263
9
10
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。