Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to find a square root of a number using python

import math
whose_square = int(input("Of which number to find square root:- "))
print("The square root of ", whose_square,"is",math.sqrt(whose_square))
 
PREVIOUS NEXT
Tagged: #find #square #root #number #python
ADD COMMENT
Topic
Name
9+6 =