📜  python中的平方根(1)

📅  最后修改于: 2023-12-03 15:04:36.268000             🧑  作者: Mango

Python中的平方根

在 Python 中,我们可以使用 math 模块中的 sqrt() 方法来计算平方根。

使用方法
import math

# 计算正数的平方根
num = 25
sqrt_num = math.sqrt(num)
print("The square root of {} is {}".format(num, sqrt_num))

# 计算复数的平方根
complex_num = 4 + 3j
sqrt_complex = cmath.sqrt(complex_num)
print("The square root of {} is {}".format(complex_num, sqrt_complex))

这将输出:

The square root of 25 is 5.0
The square root of (4+3j) is (2+1.0000000000000001j)
注意事项
  • 如果要计算负数的平方根,需要使用 cmath 模块。
  • 如果要将结果保留指定的小数位数,可以使用 round() 方法。
总结

Python 中计算平方根非常简单,只需要使用 math 模块中的 sqrt() 方法即可。注意要分别处理正数和负数的情况,以及保留结果的精度问题。