Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a python 2.7 program that reads the following information and prints a payroll statement: Employees name Number of hours worked in a week Hourly

Write a python 2.7 program that reads the following information and prints a payroll statement:

"Employees name

Number of hours worked in a week

Hourly pay rate

State tax withholding rate

Federal Withholding

If the gross pay is less than $100.00, set the rate at 0%.

If it's at least $100.00 but less than $200.00, set the rate at 5%.

If it's at least $200.00 but less than $300.00, set the rate at 10%.

If it's at least $300.00 but less than $400.00, set the rate at 15%.

Else, if it's $400.00 or more, set the rate at 20%."

A sample run is shown below:

Enter employee's name: Smith

Enter number of hours worked in a week: 10

Enter hourly pay rate: 10.75

Enter state tax withholding rate: .09

Employee Name: Smith

Hours Worked: 10.0

Pay Rate: $10.75

Gross Pay: $107.5

Deductions:

Federal Withholding (5.0%): 5.38

State Withholding (9.0%): 9.67

Total Deduction: $15.05

Net Pay: $92.45

Enter employee's name: Taylor

Enter number of hours worked in a week: 40

Enter hourly pay rate: 13.00

Enter state tax withholding rate: .15

Employee Name: Taylor

Hours Worked: 40.0

Pay Rate: $13.0

Gross Pay: $520.0

Deductions:

Federal Withholding (20.0%): 104.0

State Withholding (15.0%): 78.0

Total Deduction: $182.0

Net Pay: $338.0

Notes:

You will need to use floating point numbers. During user input think about what was used for integer input.

For decimal rounding look up the round function

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

Step: 3

blur-text-image

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