美图齐众专注资阳网站设计 资阳网站制作 资阳网站建设
资阳网站建设公司服务热线:028-86922220

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

Python程序:两个数相乘

创新互联Python教程:

站在用户的角度思考问题,与客户深入沟通,找到龙山网站设计与龙山网站推广的解决方案,凭借多年的经验,让设计与互联网技术结合,创造个性化、用户体验好的作品,建站类型包括:网站设计制作、网站设计、企业官网、英文网站、手机端网站、网站推广、域名注册、虚拟空间、企业邮箱。业务覆盖龙山地区。

写一个 Python 程序将两个数字相乘。这个 Python 示例接受两个整数值,并计算这两个数字的乘积。

num1 = int(input("Please Enter the First Number to Multiply  = "))
num2 = int(input("Please Enter the second Number to Multiply = "))

mul = num1 * num2
print('The Result of Multipling {0} and {1} = {2}'.format(num1, num2, mul))

两个浮点数相乘的 Python 程序。

num1 = float(input("Please Enter the First Number to Multiply  = "))
num2 = float(input("Please Enter the second Number to Multiply = "))

mul = num1 * num2
print('The Result of Multipling {0} and {1} = {2}'.format(num1, num2, mul))
Please Enter the First Number to Multiply  = 17.89
Please Enter the second Number to Multiply = 28.56
The Result of Multipling 17.89 and 28.56 = 510.9384

Python 程序使用函数将两个数字相乘

def multiplyTwoNum(a, b):
    return a * b

num1 = int(input("Please Enter the First Number to Multiply  = "))
num2 = int(input("Please Enter the second Number to Multiply = "))

mul = multiplyTwoNum(num1, num2)
print('The Result of Multipling {0} and {1} = {2}'.format(num1, num2, mul))
Please Enter the First Number to Multiply  = 12
Please Enter the second Number to Multiply = 19
The Result of Multipling 12 and 19 = 228

网站标题:Python程序:两个数相乘
分享网址:http://zsjierui.cn/article/djcgdos.html

其他资讯