python math.squrt
时间: 2023-11-09 14:59:36 浏览: 89
python源码math.py
math.sqrt() 是 Python 中 math 模块提供的一个函数,用于计算给定数字的平方根。使用该函数需要先导入 math 模块。
以下是使用 math.sqrt() 函数计算平方根的示例代码:
```python
import math
num = 16
result = math.sqrt(num)
print(result) # 输出:4.0
```
阅读全文