logo CodeStepByStep logo

print_pay

Language/Type: Python parameters

Write a function named print_pay that computes and prints the amount of money an employee should earn. Your function accepts two parameters: a number for the employee's hourly salary, and an integer for the number of hours the employee worked. Every hour over 8 is paid at 1.5x the normal salary. For example, the call of print_pay(10.00, 11) should print the following output:

Hours worked: 11
Pay earned: $ 125.0

You may assume that the value passed for the salary and hours are non-negative. You do not need to round any numbers in this problem.

Function: Write a Python function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.