Skip to content
Advertisement

Differing python codes for same desired result produce differing results…trying to understand why

I have posted this on a different site, but haven’t received an answer there…so posting here to get an answer that will help me understand what is going on. My original post is below:

So, I did my own code for this before going back and viewing the video of the instructor walking through this exercise.

My code:

JavaScript

Then, I went back and watch the video covering this exercise. Obviously our codes are going to be a little different. Here is what the instructor coded:

Instructor’s code:

JavaScript

My question is, with the “otpay” (line 13 of my code) calculating the rate1.5, I’m getting the same result as “otp” (line 8 in the instructor’s code) that calculates fr0.5.

What is the difference in how Python is handling the two pieces of code (rate * 1.5 VS float rate * 0.5)?

If I put in “1.5” in the instructor’s code, the result is complete different (it calculates to 2.5 times the normal rate of pay instead of 1.5 times the normal rate of pay). I’m not seeing what the difference in syntax is that would cause this to happen.

Advertisement

Answer

First, a comment on your code: What’s the difference between straight-time hours and regular hours? There is none. You could simplify your code by not making that distinction. Also, all those float casts are unnecessary AFAICT.

Like this (untested)

JavaScript

To answer your question: You’re just using a different way to come to the same result. You’re computing payment for the first 40 hours (regpay) + payment for the overtime time (otpay). Your instructor is computing regular payment for the time worked (reg) + additional payment for overtime (otp).

Btw: Please tell your instructor to use better variable names.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement