↑ Yes, it does.
Python 2.7.13
I want to input 0 for the first prompt, then .37 for then next, so it comes out to .481 For some reason, and I know I've messed up, I cannot add the 'second' variable defined above, and the 'overallheight' value is not working:
u1 = 12.5
first = .481
u2 = 2
length = u1 * 12
second = u2 / 64
overallheight = first - second #this line is not subtracting
height_multiply = overallheight / .3075
width_multiply = length / 108
def calc():
x = float(raw_input("first prompt"))
y = float(raw_input("second prompt"))
y1 = (y - .0625) * height_multiply
x1 = x * width_multiply
y2 = y1 + second #this is the 'second' that needs to be added
print("(%s,%s)") % (x1, y2)
while 1>0:
calc()`