python平方根

wklken的笔记 2020-03-05

1),求正数的平方根

#正数求平方根
num=float(input(‘输入一个数字:‘))
sqrt=num**0.5
print(‘平方根为:‘,sqrt)

2),math.sqrt用于求负数和复数2平方根

import cmath
num=float(input(‘输入一个数字:‘))
a=cmath.sqrt(num)
print(‘平方根为:‘,a)

 如果输入正数,结果输出为复数

相关推荐