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

創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務領域包括:做網(wǎng)站、網(wǎng)站設計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務,滿足客戶于互聯(lián)網(wǎng)時代的江川網(wǎng)站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡建設合作伙伴!
寫一個 Python 程序,求三個數(shù)的和與均值。這個 Python 示例接受三個整數(shù)值,并使用算術(shù)運算符計算總和和平均值。
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 程序求三個浮點數(shù)的和與均值。
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程序:求三個數(shù)的和與均值
文章轉(zhuǎn)載:http://www.5511xx.com/article/dhochec.html


咨詢
建站咨詢
