开平方用python怎么描述
时间: 2023-10-25 22:07:23 浏览: 62
python开平方怎么写?
5星 · 资源好评率100%
你可以使用 Python 中的 math 模块中的 sqrt() 函数来计算平方根。
示例代码:
``` python
import math
x = 16
square_root = math.sqrt(x)
print(square_root)
```
输出:
```
4.0
```
其中,16 是要计算平方根的数字,math.sqrt() 函数返回的就是计算出的平方根。
阅读全文