Question: Python coding: Instructions: The Payroll Department keeps a list of employee information for each pay period in a text file. The format of each line
Python coding:
Instructions:
The Payroll Department keeps a list of employee information for each pay period in a text file. The format of each line of the file is the following:
Write a program that inputs a filename from the user and prints to the terminal a report of the wages paid to the employees for the given period.
- The report should be in tabular format with the appropriate header.
- Each line should contain:
- An employees name
- The hours worked
- The wages paid for that period.
An example of the program input and output is shown below:
Enter the file name: data.txt Name Hours Total Pay Lambert 34 357.00 Osborne 22 137.50 Giacometti 5 503.50
This name hours and total pay are in a data.txt file provided. AND, if you also notice the code that I will input will go into the payroll.py file. Shown in the picture below.

data.txt payroll.py | + 1 Lambert 34 10.50 2 Osborne 22 6.25 3 Giacometti 5 100.70 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
