创新互联python教程:
写一个 Python 程序,用算术运算符和函数计算一个数的立方,并举例说明。
这个 Python 程序允许用户输入任何数值。接下来,Python 使用算术运算符找到该数字的立方体。
# Python Program to Calculate Cube of a Number
number = float(input(" Please Enter any numeric Value : "))
cube = number * number * number
print("The Cube of a Given Number {0} = {1}".format(number, cube))
一个数字输出的 Python 立方体
Please Enter any numeric Value : 5
The Cube of a Given Number 5.0 = 125.0
这个 Python 立方数的例子同上,但是在这里,我们使用的是指数算子。
# Python Program to Calculate Cube of a Number
number = float(input(" Please Enter any numeric Value : "))
cube = number ** 3
print("The Cube of a Given Number {0} = {1}".format(number, cube))
Please Enter any numeric Value : 10
The Cube of a Given Number 10.0 = 1000.0
在这个 Python 程序的立方体编号代码片段中,我们定义了一个函数,它可以找到给定数字的立方体。
# Python Program to Calculate Cube of a Number
def cube(num):
return num * num * num
number = float(input(" Please Enter any numeric Value : "))
cub = cube(number)
print("The Cube of a Given Number {0} = {1}".format(number, cub))
分享文章:Python程序:计算数字立方
本文链接:http://www.shufengxianlan.com/qtweb/news1/436651.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联