当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.sqrt()用法及代码示例


Python math.sqrt() 方法

math.sqrt() 方法是 math 模块的一个库方法,用于求给定数的平方根,它接受一个正数(整数或浮点数)并返回平方根。

注意:

  • 如果给定的数字是负数,则返回 "ValueEroor" - "ValueError:math domain error"。
  • 如果我们提供类似字符串的任何东西,除了数字,它还会返回 "ValueError" - “TypeError:a float is required”。

math.sqrt() 方法的语法:

    math.sqrt(n)

参数: n- 需要计算平方根的数字。

返回值: float- 它返回一个浮点值,它是给定数字的平方根n

例:

    Input:
    a = 2

    # function call
    print(math.sqrt(a))

    Output:
    1.4142135623730951

用于演示 math.sqrt() 方法示例的 Python 代码

# python code to demonstrate example of 
# math.sqrt() method 

# importing math module
import math 

# numbers
a = 2
b = 12345
c = 10.21
d = 0
e = 0.0

# finding square roots of the numbers
print("square root of ", a, " is = ", math.sqrt(a))
print("square root of ", b, " is = ", math.sqrt(b))
print("square root of ", c, " is = ", math.sqrt(c))
print("square root of ", d, " is = ", math.sqrt(d))
print("square root of ", e, " is = ", math.sqrt(e))

输出

square root of  2  is =  1.4142135623730951
square root of  12345  is =  111.1080555135405
square root of  10.21  is =  3.1953090617340916
square root of  0  is =  0.0
square root of  0.0  is =  0.0


相关用法


注:本文由纯净天空筛选整理自 math.sqrt() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。