#!/usr/bin/python # average.py # # Calculate and display the average of five numbers. # # AMJ # 15th October 2002 first = input ("Enter the First Number: ") second = input ("Enter the Second Number: ") third = input ("Enter the Third Number: ") fourth = input ("Enter the Fourth Number: ") fifth = input ("Enter the Fifth Number: ") average = (first + second + third + fourth + fifth) / 5.0 print "The average is", average