📅  最后修改于: 2022-03-11 14:45:40.480000             🧑  作者: Mango
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))