Answer: I have 2 suggestions: one, maybe, maybe, use some of that metal tape that you get at hardware places, and: two, buy a new pipe (or pipes), two be sure that it won't happen again. Have a good day, and thanks for asking the brain!
Explanation:
jrjrkeekkekekkwkkakkllalllalallalllalalaallalalaalalalalalallallallllallalalallaaallalallllllallllllllalaalalalaaaaalalaaaaaaalgjgiejxpwunfifjruritiririirieoeowowowowowowowowooeowowowoeeoeowowowowowowowoowowwowowowoozoeisiaokseekxidjdkdjfidjfjdjfjfjrifjrifjdirjdjrjfjrjfjrjfjrfuejwwuxmaneanfjkaosndjxieneamalhaqzeeshanvhorahfuensiwjakaksjdhfhfnfhfndjxnxmakaalalalwlwlwwow
Answer:
we know that
A worker currently makes \$425.00 per week
remember that
1\ year=52\ weeks
so
by proportion find the amount that the worker will earn in one year
\frac{425}{1} \frac{\$}{week} =\frac{x}{52} \frac{\$}{weeks} \\ \\x=52*425 \\ \\x=\$22,100
therefore
the answer is
\$22,100
Explanation:
Answer:
None of the above cause thats what i put
def calculate_pay(total_worked_hours, rate_per_hour):
if total_hours_worked > 40:
# anything over 40 hours earns the overtime rate
overtimeRate = 2 * rate
_per_hour
return (40 * rate_per_hour) + ((total_worked_hours - 40) * overtimeRate
else:
# if you didn't work over 40 hours, there is no overtime
overtime = 0
return total_worked_hours * rate_per_hour
Explanation:
- First we create the calculate_pay function which will takes 2 parameters.
- Secondly ,inside the function we check if the total_worked_hours is greater than 40 and then return the pay by calculating with the help of formula for work over 40 hours.
- If the total work hour is less than 40 then we return the pay by multiplying the total_worked_hours with rate_per_hour.