Python 开根号实例讲解
在 Python 中,我们可以使用数学模块 math
来进行开根号的操作。该模块提供了 sqrt()
函数,可以对数字求平方根。
1. 导入 math 模块
我们需要先导入 math 模块,才能使用其中的 sqrt()
函数。
import math
2. 使用 sqrt() 函数进行开根号
使用 sqrt()
函数来进行开根号操作非常简单。我们只需要将需要开根号的数字作为函数的参数传递即可。例如,对数字 9 开根号:
import math
num = 9
root = math.sqrt(num)
print(root) # 输出 3.0
这里的 num
表示要进行开根号的数字,root
表示开根号的结果。print()
函数将 root
打印到屏幕上。
3. 示例说明
示例 1:求100的开平方根
import math
num = 100
root = math.sqrt(num)
print(root) # 输出 10.0
示例 2:求5的开立方根
import math
num = 5
root = math.pow(num, 1/3)
print(root) # 输出 1.7099759466766968
我们可以使用 math.pow()
函数来对数字求幂次方,这里用它来求 5 的开立方根。由于 1/3 是小数,所以 pow()
函数将返回一个浮点数。
以上就是 Python 开根号的基本操作,希望对您有帮助。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python开根号实例讲解 - Python技术站