📅  最后修改于: 2023-12-03 15:04:36.268000             🧑  作者: Mango
在 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)
Python 中计算平方根非常简单,只需要使用 math 模块中的 sqrt() 方法即可。注意要分别处理正数和负数的情况,以及保留结果的精度问题。