📜  python 平方根 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:54.855000             🧑  作者: Mango

代码示例6
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))