📅  最后修改于: 2023-12-03 15:39:11.031000             🧑  作者: Mango
在Python中,我们可以使用内置的math模块来执行各种数学运算,例如平方根。使用math.sqrt()函数可以计算平方根。
要使用sqrt函数,我们首先需要导入math模块。在Python中,我们可以使用“import”语句来导入模块:
import math
现在,我们可以使用sqrt()函数来计算平方根,例如:
num = 25
sqrt_value = math.sqrt(num)
print("The square root of", num, "is", sqrt_value)
这将输出以下结果:
The square root of 25 is 5.0