Python教程-Python的sqrt():数学函数
sqrt()函数是Python中的一个内置数学函数,用于执行与数学相关的操作。sqrt()函数用于返回任何导入的数字的平方根。
在本教程中,我们将讨论如何在Python中使用sqrt()函数。
语法:
math.sqrt(N)
参数:
'N'是任何大于或等于0的数字(N >= 0)。
返回:
它将返回作为参数传递的数字"N"的平方根。
示例:
# importing the math module
import math as m
# printing the square root of 7
print ("The square root of 7: ", m.sqrt(7))
# printing the square root of 49
print ("The square root of 49: ", m.sqrt(49))
# printing the square root of 115
print ("The square root of 115: ", m.sqrt(115))
输出:
The square root of 7: 2.6457513110645907
The square root of 49: 7.0
The square root of 115: 10.723805294763608
错误
如果作为参数传递的数字小于"0",则执行sqrt()函数时会出现错误。
示例:
# import the math module
import math as m
print ("The square root of 16: ", m.sqrt(16))
# printing the error when x less than 0
print ("The square root of -16: ", m.sqrt(-16))
输出:
The square root of 16: 4.0
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-79d85b7d1d62> in <module>
5
6 # printing the error when x less than 0
----> 7 print ("The square root of -16: ", m.sqrt(-16))
8
ValueError: math domain error
解释:
首先,我们将"16"作为参数传递,得到的输出为"4",但对于小于"0"的"-16",我们得到了一个错误,显示"数学域错误"。
应用
我们还可以使用sqrt()函数来创建一个执行数学函数的应用程序。假设我们有一个数字"N",我们需要检查它是否是质数。
方法:
我们将使用以下方法:
- 步骤1:我们将导入math模块。
- 步骤2:我们将创建一个函数"check_if",用于检查给定的数字是否是质数。
- 步骤3:我们将检查数字是否等于1。如果是,它将返回false。
- 步骤4:我们将运行一个for循环,从范围"2"到"sqrt(N)"。
- 步骤5:我们将检查给定范围内是否有任何数字能整除"N"。
示例:
import math as M
# Creating a function for checking if the number is prime or not
def check_if(N):
if N == 1:
return False
# Checking from 1 to sqrt(N)
for K in range(2, (int)(M.sqrt(N)) + 1):
if N % K == 0:
return False
return True
# driver code
N = int( input("Enter the number you want to check: "))
if check_if(N):
print ("The number is prime")
else:
print ("The number is not prime")
输出:
#1:
Enter the number you want to check: 12
The number is not prime
#2:
Enter the number you want to check: 11
The number is prime
#3:
Enter the number you want to check: 53
The number is prime
结论
在本教程中,我们讨论了如何使用Python的sqrt()函数来计算大于0的任何数字的平方根。