The week 8 final project involves creating a Python program that builds on the assignments for weeks 3 and 4. In addition to the house cleaning service from the previous assignments, the company will...

1 answer below »
N/A


The week 8 final project involves creating a Python program that builds on the assignments for weeks 3 and 4. In addition to the house cleaning service from the previous assignments, the company will now offer yard service. Yard service involves mowing, edging and shrub pruning. The cost of the mowing depends upon the square footage of the yard, the cost of edging depends upon the linear footage of the yard's edges and the cost of shrub pruning depends upon the number of shrubs. Your program should begin by asking the customer whether they are requesting house cleaning or yard service. If the user inputs an invalid choice, the user should be re-prompted until a valid choice is entered. Depending upon the choice the program should then prompt the user for the information needed to determine the cost of the service. Seniors receive a discount on both services. You decide the discount amount, which can be either a percentage or a fixed dollar amount. You also decide how to prompt the user, either by requesting the customer's age or asking whether the customer is a senior? The output of your program should be the cost of the requested service. You may use your code from weeks 3 and 4 as a starting platform or start a new program. At a minimum, your program should have one function to calculate the house cleaning cost, another to calculate the yard service cost and a third to determine the discount. Your program should include comments for the major steps of your code. You should already have these in your design. Also document the values you chose as the cost of house cleaning, which include the cutoffs for the three house sizes, the cost for each size and the surcharge for a more complete cleaning. In addition document the cost of square foot for moving, the cost per linear foot for edging and the cost per shrub for pruning. Finally you should document any constants involved in determining the senior discount. Your program should include Header comments (what the program does) and in-line comments (the major design steps).   Submit your Python program as a text file ( .py) file.  In addition, submit a Design outline and a Test plan/report (3 different test cases-but the invalid inputs must be tested.) in a Word document or a .pdf file and include a screen shot of execution of your program for each test case.  Your submission must also adhere to the SubmissionRequirements document. (i.e. Filename and display your name, class, date in the output). PLEASE USE THIS FORMAT FOR THE TEST PLAN REPORT PART IN WORD DOC
Answered 1 days AfterDec 10, 2022

Answer To: The week 8 final project involves creating a Python program that builds on the assignments for weeks...

Priye answered on Dec 12 2022
37 Votes
Design Outline
Test Case
    Test case
    Input
    Expected Output
    1
    Yard Square Footage = 400
Yar
d’s Edge linear Footage = 350
Total Shrubs count = 40
Senior citizen = Yes
    Yard Square Footage Cost = $10 * 400 = $4000
Yard’s Edge linear Footage Cost = $6 * 350 = $2100
Total Shrubs count = $4 * 40...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here