新聞中心
這里有您想知道的互聯網營銷解決方案
Python程序:求三個數的和與均值
創(chuàng)新互聯Python教程:

創(chuàng)新互聯堅持“要么做到,要么別承諾”的工作理念,服務領域包括:做網站、網站設計、企業(yè)官網、英文網站、手機端網站、網站推廣等服務,滿足客戶于互聯網時代的江川網站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯網解決方案。努力成為您成熟可靠的網絡建設合作伙伴!
寫一個 Python 程序,求三個數的和與均值。這個 Python 示例接受三個整數值,并使用算術運算符計算總和和平均值。
num1 = int(input("Please Enter the First Number = "))
num2 = int(input("Please Enter the Second number = "))
num3 = int(input("Please Enter the Third number = "))
sumOfThree = num1 + num2 + num3
avgOfThree = sumOfThree / 3
print('The sum of {0}, {1} and {2} = {3}'.format(num1,num2, num3, sumOfThree))
print('The Average of {0}, {1} and {2} = {3}'.format(num1,num2, num3, avgOfThree))
Python 程序求三個浮點數的和與均值。
num1 = float(input("Please Enter the First Number = "))
num2 = float(input("Please Enter the Second number = "))
num3 = float(input("Please Enter the Third number = "))
sumOfThree = num1 + num2 + num3
avg = sumOfThree / 3
flooravg = sumOfThree // 3
print('The sum of {0}, {1} and {2} = {3}'.format(num1,num2, num3, sumOfThree))
print('The Average of {0}, {1} and {2} = {3}'.format(num1,num2, num3, avg))
print('Floor Average of {0}, {1} and {2} = {3}'.format(num1,num2, num3, flooravg))
Please Enter the First Number = 19.6
Please Enter the Second number = 12.8
Please Enter the Third number = 156.98
The sum of 19.6, 12.8 and 156.98 = 189.38
The Average of 19.6, 12.8 and 156.98 = 63.126666666666665
Floor Average of 19.6, 12.8 and 156.98 = 63.0 網站欄目:Python程序:求三個數的和與均值
鏈接地址:http://m.fisionsoft.com.cn/article/dhochec.html


咨詢
建站咨詢
