Python Function Reference

math.sqrt
Return the square root of x.
Python 3.13
math.sqrt(x)
x
The number to find the square root of.
Examples
Python 3.13
>>> import math
>>> math.sqrt(16)
4.0