import math import array print 'This is a reverse polish calculator, first enter how many number you are using, the numers, and then the operator.' num_array=[] num1 = input('How many numbers are you using: ') while num1 > 0: num2 = input('Enter a number: ') num1 = num1 - 1 ...