Python sqrt() function calculates the square root of x (x > 0). It's a method of math module.
sqrt()
math
>>> import math >>> math.sqrt(0)
0.0
>>> math.sqrt(9)
3.0
>>> math.sqrt(100)
10.0