You can make a function for averages, usage:
average(21,343,2983) # You can pass as many arguments as you want.
Here is the code:
def average(*args): total = 0 for num in args: total+=num return total/len(args)
*args
allows for any number of answers.