math.sqrt()
Published Jun 22, 2021Updated Mar 17, 2024
Contribute to Docs
Returns the square root of numeric input x.
Syntax
math.sqrt(x)
If input x
is a negative value, .sqrt()
will return a ValueError: math domain error
.
Example
Use math.sqrt()
to return the square root of integer 5
:
import mathprint(math.sqrt(5))
The above code gives the following output:
2.23606797749979
Use math.sqrt()
to return the square root of the float 5.5
:
import mathprint(math.sqrt(5.5))
The above code gives the following output:
2.345207879911715
Codebyte Example
Run the following example that uses the math.sqrt()
function to understand its working:
All contributors
- ishg-153
- Anonymous contributor
- christian.dinh
- Anonymous contributor
- Anonymous contributor
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn Python on Codecademy
- Career path
Computer Science
Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!Includes 6 CoursesWith Professional CertificationBeginner Friendly75 hours - Course
Learn Python 3
Learn the basics of Python 3.12, one of the most powerful, versatile, and in-demand programming languages today.With CertificateBeginner Friendly23 hours