Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

Use Python: - Files and Exceptions. DO NOT use arrays for this problem. Document code throughout! Write a program to perform the following actions:...

Use Python: â Files and Exceptions.

DO NOT use arrays for this problem.

Document code throughout!

Write a program to perform the following actions:

a. Open an output file named employee.txt, write your own name to it and close the file.

b. Ask the user to enter the name of any file and the userâs name and email address. Write the data to the file. In addition, use a loop to write the numbers 0 through 100 with steps of 10 to the file. Close the file.

c. Open the file employee.txt, read your name from the file, display the name on the screen, and then close the file.

d. Ask the user for the number of employees for processing employee data. Then, ask for a set of values for hours worked and pay rate and calculate pay for each employee. Assume double pay (2 times pay rate) for hours worked more than 40 hours. So, if the user wants to process 5 employees, you allow data entry for 5 employees. Use the try/except construct to display an error message, if the value for rate and/or hours worked entered by the user is character or decimal. Both values must be properly checked for invalid input. Calculate the total pay and the average pay. Write the data values to a file whose name is entered by the user (make sure to ask for the file name). Write the total and average pay values to this file.

import os;#af= open("employee.txt","w")f.write("INSERT NAME HERE \n")f.close()#bcwd = os.getcwd()print ("Current Working Directory", cwd)print...
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question