{site_name}

{site_name}

🌜 搜索

Pythonmath是Python编程语言的一个内置模块,提供了许多用于数学运算和操作的函数

Python 𝄐 0
python math库常用函数,python math.pi怎么用,pythonmath模块
Pythonmath是Python编程语言的一个内置模块,提供了许多用于数学运算和操作的函数。它包括各种数学函数,例如三角函数、对数函数、幂函数等。

以下是一些Pythonmath模块中常用的函数及其示例:

1. sqrt(x):返回x的平方根。

import math
print(math.sqrt(16)) # 输出4.0


2. pow(x, y):返回x的y次方。

import math
print(math.pow(2, 3)) # 输出8.0


3. factorial(x):返回x的阶乘。

import math
print(math.factorial(4)) # 输出24


4. sin(x):返回x的正弦值(x以弧度为单位)。

import math
print(math.sin(math.pi/2)) # 输出1.0


5. log(x,base):返回以base为底,x的对数。

import math
print(math.log(8,2)) # 输出 3.0


6. acos(x):返回x的反余弦值(以弧度为单位)。

import math
print(math.acos(0.5)) # 输出1.0471975511965979,即30度的弧度值