python sqrt报错
时间: 2023-10-12 20:13:09 浏览: 16
当你在 Python 中使用 sqrt() 函数时,可能会遇到以下错误:
```
NameError: name 'sqrt' is not defined
```
这是因为 sqrt() 函数不是 Python 的内置函数,需要先导入 math 模块。
可以使用以下代码导入 math 模块并使用 sqrt() 函数:
```python
import math
x = 4
print(math.sqrt(x))
```
输出结果为:2.0
如果还有其他问题,请提供更多详细信息。
阅读全文