currentRate = 22.5 seniorAgent = 26.0 qa = 31.0 hpy = 50 * 37.5 currentSalary = hpy * currentRate*.7 seniorSalary = hpy * seniorAgent*.7 qaSalary = hpy * qa*.7 rent = 855*12 car = 155*26 currentSalaryF = math.floor(currentSalary) seniorDif = seniorSalary - currentSalary qaDif = qaSalary - currentSalary # Let's see what I currently gain print(currentSalary) # Let's see what I most likely will be gaining as a Senior Agent print(seniorSalary,seniorDif) # Let's see what I most likely will be gaining as the QA person slot exception print(qaSalary,qaDif) print('\n') # Let's see what I currently gain after paying rent print(currentSalary-rent) # Let's see what I most likely will be gaining as a Senior Agent after paying rent print(seniorSalary-rent) # Let's see what I most likely will be gaining as the QA person slot exception after paying rent print(qaSalary-rent) # Let's see what I currently gain after paying rent and car print(currentSalary-rent-car) # Let's see what I most likely will be gaining as a Senior Agent after paying rent and car print(seniorSalary-rent-car) # Let's see what I most likely will be gaining as the QA person slot exception after paying rent and car print(qaSalary-rent-car)