Python 3.6 模組學習math庫常見函式
阿新 • • 發佈:2018-12-29
- math.pi
數學常數π= 3.141592……
- math.e
數學常數e = 2.718281….
- math.tau
數學常數τ= 6.283185……
- math.ceil(x)
返回x的上限,返回最小的整數A (A>=x)。如math.ceil(3.14)返回的整數為4官網math庫
- math.fabs(x)
返回絕對值x。
- math.factorial(x)
返回 x! 。如果x不是積分或者是負的,就會產生ValueError。
- math.floor(x)
返回x的下限,返回一個值最大整數A (A<=x)。如math.floor(3.14)返回的整數為3
-
math.exp(x)
返回 ex也就是 math.e**x
-
math . pow(x,y)
- math.sqrt(x)
返回√x
- math.degrees(x)
將角x從弧度轉換成角度。
- math.radians(x)
把角x從度轉換成弧度。
- math.acos(x)
返回 x 的反餘弦
- math.asin(x)
返回 x 的反正弦。
- math.atan(x)
返回 x 的反正切。
- math.cos(x)
返回 x 的餘弦。
- math.sin(x)
返回 x 的正弦。
- math.tan(x)
返回 x 的正切。
- math.log(x,a)