Here's the assignment we're working with:
Write a Python program that calculates weekly pay. The program should multiply hours worked by hourly pay rate to get the weekly pay. Include overtime pay at 1.5 times the regular rate for any hours worked over 40. Use a float conversion for the hourly pay rate.
(Note: I'm paraphrasing how the original question might have been worded, but the core concepts are the same.)
