求一个数的平方根。
math.sqrt(x)复制
math.sqrt(x)
def test(): ret=math.sqrt(100) print(ret)复制
def test():
ret=math.sqrt(100)
print(ret)