标签:color div 负数 span 平方根 pre class input style
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)
如果输入正数,结果输出为复数
标签:color div 负数 span 平方根 pre class input style
原文地址:https://www.cnblogs.com/condom/p/12417012.html