写一个 Python 程序,用算术运算符和函数计算一个数的平方,并举例说明。
计算数字平方的 Python 程序
这个 Python 程序允许用户输入任何数值。接下来,Python 使用算术运算符 找到该数字的平方
# Python Program to Calculate Square of a Number
number = float(input(" Please Enter any numeric Value : "))
square = number * number
print("The Square of a Given Number {0} = {1}".format(number, square))
数字输出的 Python 平方
Please Enter any numeric Value : 9
The Square of a Given Number 9.0 = 81.0
Python 程序求一个数的平方示例 2
这个 Python 平方的一个数字例子同上。但是,这次我们使用的是指数算子。
number = float(input(" Please Enter any numeric Value : "))
square = number ** 2
print("The Square of a Given Number {0} = {1}".format(number, square))
Please Enter any numeric Value : 10
The Square of a Given Number 10.0 = 100.0
用函数求一个数的平方的 Python 程序
在这个 Python 程序的例子中,我们定义了一个函数,它返回一个数字的平方。
def square(num):
return num * num
number = float(input(" Please Enter any numeric Value : "))
sqre = square(number)
print("The Square of a Given Number {0} = {1}".format(number, sqre))