在Python中,sqrt
函数用于计算一个数的平方根,它位于math
模块中,因此在使用之前需要先导入该模块。
以下是关于sqrt
函数的详细用法:
1、导入math
模块:
import math
2、使用sqrt
函数计算平方根:
result = math.sqrt(number)
number
是要计算平方根的数值。
3、示例:
import math 计算9的平方根 result = math.sqrt(9) print(result) # 输出结果为3.0 计算25的平方根 result = math.sqrt(25) print(result) # 输出结果为5.0
4、注意事项:
sqrt
函数只接受非负数作为参数,如果传入负数,将引发ValueError
异常。
如果需要计算浮点数的平方根,可以使用math.sqrt()
函数;如果需要计算整数的平方根,可以使用int()
函数进行类型转换。