Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

i want to add federal tax calculaton to my code print ( Pay calculator will give your paycheck amount based on your pay rate

i want to add federal tax calculaton to my code
print("Pay calculator will give your paycheck amount based on your pay rate and hours worked. Overtime is calculated at time and a half.")
payRate = float(input('Enter your pay rate per hour:
'))
totalHours = float(input('Enter the amount of hours worked:
'))
if totalHours <=40:
totalPay = totalHours * payRate
else:
otHours = totalHours -40
regHours = totalHours - otHours
totalPay =(otHours * payRate *1.5)+(regHours * payRate)
print('Your paycheck will be: $',"{:.2f}".format(totalPay))

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems An Application Oriented Approach Complete Version

Authors: Michael Kifer, Arthur Bernstein, Richard Lewis

2nd Edition

0321268458, 978-0321268457

More Books

Students also viewed these Databases questions

Question

use this ^ to fill out following tables

Answered: 1 week ago

Question

How do modern Dashboards differ from earlier implementations?

Answered: 1 week ago