![]() |
sqrt() function returns square root of any number. It is an inbuilt function in Python programming language. In this article, we will learn more about the Python Program to Find the Square Root. sqrt() FunctionWe can calculate square root in Python using the sqrt() function from the math module. In this example, we are calculating the square root of different numbers by using sqrt() function. Python3
Output
0.0 2.0 1.8708286933869707 Definition of math.sqrt() Functionsqrt() function in Python is an in-built function, and it is present in the math library. You can use the sqrt function after importing the math library. import math sqrt() function only takes a value greater than or equal to 0. math.sqrt() Method Syntax
Parameterx: is any number such that x>=0 Returns: It returns the square root of the number passed in the parameter. sqrt() Function ExamplesLet’s look at some different uses of math.sqrt() function. Example 1: Check if Prime or NotIn this example, we are given a number and we are checking if a number is prime or not. Here,run a loop from 2 to sqrt(n) and check if any number in range (2-sqrt(n)) divides n. Python3
Output
prime Example 2: Finding Hypotenuse Of a TriangleIn this example, we are using sqrt() function to find the hypotenuse of a triangle. Python3
Output
The value for the hypotenuse would be 25.079872407968907 sqrt() Function ErrorWhen x<0 it does not execute due to a runtime error. In this example, we can see that we cannot calculate the Python square root if the number is less than zero. Python3
Output Traceback (most recent call last): File "/home/67438f8df14f0e41df1b55c6c21499ef.py", line 8, in print(math.sqrt(-1)) ValueError: math domain error This was all about the sqrt() function that is used to find square root in Python. Finding square root in Python is very easy with this in-built function.
|
Reffered: https://www.geeksforgeeks.org
Python |
Related |
---|
![]() |
![]() |
![]() |
![]() |
|
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 13 |