1from math import * # We import the math module
2print(sqrt(16)) # We print the square root of the number 16
1import math
2whose_square = int(input("Of which number to find square root:- "))
3print("The square root of ", whose_square,"is",math.sqrt(whose_square))
4
1import math
2number = int(input("enter a number:"))
3sqrt = math.sqrt(number)
4print("square root:" , sqrt)
5