Write a Python program to find the sum and average of three numbers. This Python example accepts three integer values and calculates the sum and average using arithmetic operators.
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 program to find the sum and average of three floating point numbers.
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