📜  编写 Python 程序以求输入数字的平方根. (创建平方根的用户定义函数). - Python 代码示例

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

代码示例1
import math
number = int(input("enter a number:"))
sqrt = math.sqrt(number)
print("square root:" , sqrt)