当前分类:300例题>>正文

Python示例:计算数字平方根

来源:互联网   更新时间:2023年6月17日  

Python 示例

用一个例子写一个 Python示例,用 sqrt 和幂函数求一个数的平方根。

这个程序允许用户输入任何数字。接下来,这个 Python 平方根程序使用名为 sqrt() 的数学函数找到该数字的平方根。

# Python Program to find Square root of a Number

import math

number = float(input(" Please Enter any numeric Value : "))

squareRoot = math.sqrt(number)

print("The Square Root of a Given Number {0}  = {1}".format(number, squareRoot))
 Please Enter any numeric Value : 64
The Square Root of a Given Number 64.0  = 8.0

使用幂()的数字平方根

在本 Python 平方根程序中,我们使用 pow()函数来求一个数的平方根。记住,√数=数

import math

number = float(input(" Please Enter any numeric Value : "))

squareRoot = math.pow(number, 0.5)

print("The Square Root of a Given Number {0}  = {1}".format(number, squareRoot))

本文固定链接:https://6yhj.com/leku-p-4275.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 缓存