Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python program to find sqaure root of the number

# python program to find the square root of the number
num = int(input("enter a number:"))

num_sqrt = num ** 0.5
print("the sqare root of {0} is {1}".format(num, num_sqrt))
 
PREVIOUS NEXT
Tagged: #python #program #find #sqaure #root #number
ADD COMMENT
Topic
Name
2+3 =