Python math.isqrt() Method
Example
Round a square root number downwards to the nearest integer:
# Import math Library
import math
# Examples to print the square
root of different numbers
print (math.sqrt(10))
print (math.sqrt (12))
print (math.sqrt (68))
print (math.sqrt (100))
# Round square root
numbers downward to the nearest integer
print (math.isqrt(10))
print
(math.isqrt (12))
print (math.isqrt (68))
print (math.isqrt (100))
Run example »
Definition and Usage
The math.isqrt()
method rounds a square root number downwards to the nearest integer.
Note: The number must be greater than or equal to 0.
Syntax
math.isqrt(x)
Parameter Values
Parameter | Description |
---|---|
x | Required. A number to round the square root of. If the number is less than 0, it returns a ValueError. If the value is not a number, it returns a TypeError |
Technical Details
Return Value: | An int value, representing the square
root of a number, without decimals |
---|---|
Python Version: | 3.8 |