saving . . . saved python has been deleted. python has been hidden .
python
Title
Question
<span style="color: rgb(17, 17, 17); font-family: sans-serif; font-size: 14px; background-color: rgb(238, 232, 170);"> Write a program to prompt the user for hours and rate per hour using input to compute gross pay. Pay should be the normal rate for hours up to 40 and time-and-a-half for the hourly rate for all hours worked above 40 hours. Put the logic to do the computation of pay in a function called </span><span style="font-weight: 700; color: rgb(17, 17, 17); font-family: sans-serif; font-size: 14px;">computepay()</span><span style="color: rgb(17, 17, 17); font-family: sans-serif; font-size: 14px; background-color: rgb(238, 232, 170);"> and use the function to do the computation. The function should return a value. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75). You should use </span><span style="font-weight: 700; color: rgb(17, 17, 17); font-family: sans-serif; font-size: 14px;">input</span><span style="color: rgb(17, 17, 17); font-family: sans-serif; font-size: 14px; background-color: rgb(238, 232, 170);"> to read a string and </span><span style="font-weight: 700; color: rgb(17, 17, 17); font-family: sans-serif; font-size: 14px;">float()</span><span style="color: rgb(17, 17, 17); font-family: sans-serif; font-size: 14px; background-color: rgb(238, 232, 170);"> to convert the string to a number. Do not worry about error checking the user input unless you want to - you can assume the user types numbers properly. Do not name your variable sum or use the sum() function</span>

Python-3.4.3 Getting-started-with-IPython 00-01 min 10-20 sec 31-08-20, 8:26 p.m. amans551

Answers:

Please do not paste coding questions here. Please ask any specific questions regarding the spoken tutorial.
08-09-20, 11:38 a.m. ankitrj.iitb


Log-in to answer to this question.