Python中如何表示根号?
在Python中,可以使用**
运算符来计算幂,其中0.5
是根号的意思。例如,计算4的根可以写成4 ** (1/2)
。
示例代码:
# 计算4的根
root_of_four = 4 ** (1/2)
print(root_of_four) # 输出: 2.0
# 计算25的根
root_of_25 = 25 ** (1/2)
print(root_of_25) # 输出: 5.0
另外,Python标准库中的math
模块提供了sqrt
函数,可以直接计算根号。
示例代码:
import math
# 使用math.sqrt计算4的根
root_of_four = math.sqrt(4)
print(root_of_four) # 输出: 2.0
# 使用math.sqrt计算25的根
root_of_25 = math.sqrt(25)
print(root_of_25) # 输出: 5.0
评论已关闭