Do Not COPY & PASTE from previous answers. Please READ the question THOROUGHLY and CAREFULLY before you attempt to answe
Posted: Sun Jul 10, 2022 11:23 am
Do Not COPY & PASTE from previous answers. Please READthe question THOROUGHLY and CAREFULLY before you attempt to answerit as this question requires many steps. REFRAIN FROMANSWERING IF YOU CANNOT FULFILL MY DEMAND, AND LEAVE IT FOR SOMEONEWHO CAN ANSWER IT. DON'T WASTE MY QUESTION AS THEY ARE LIMITED ORELSE I WILL REPORT YOU TO THE answers ADMINISTRATIONIMMEDIATELY.
You are required to write a Python program to compute the costof house cleaning. The program should prompt the user for thenumber of rooms in the house, 2 types of cleaning (Windows andDusting with the price is different for each type) and whether thecleaning should be a light cleaning or a more complete one. Youshould decide on the cutoffs for what constitutes a small, medium,and large number of rooms. Your program should output the cost ofthe house cleaning based on the number of rooms and the types ofcleaning. Document the values you chose as the cutoffs for thethree house sizes, the cost for each size and the prices for eachcleaning type and the surcharge for a more complete cleaning inyour comments as well.
In addition to the house cleaning service, we also offer yardservice. 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'sedges and the cost of shrub pruning depends upon the number ofshrubs. The program should begin by asking the customer whetherthey are requesting house cleaning or yard service. If the userinputs an invalid choice, the user should be re-prompted until avalid choice is entered. Depending upon the choice the programshould then prompt the user for the information needed to determinethe cost of the service. Seniors receive a 10% discount on bothservices by prompting the user to requesting the customer's age.The output of your program should be the cost of the requestedservice.
At a minimum, the program should have one function to calculatethe house cleaning cost, another to calculate the yard service costand a third to determine the discount. The program should includecomments for the major steps of your code. In addition, documentthe cost of square foot for mowing, the cost per linear foot foredging and the cost per shrub for pruning. Finally, you shoulddocument any constants involved in determining the seniordiscount.
You are required to write a Python program to compute the costof house cleaning. The program should prompt the user for thenumber of rooms in the house, 2 types of cleaning (Windows andDusting with the price is different for each type) and whether thecleaning should be a light cleaning or a more complete one. Youshould decide on the cutoffs for what constitutes a small, medium,and large number of rooms. Your program should output the cost ofthe house cleaning based on the number of rooms and the types ofcleaning. Document the values you chose as the cutoffs for thethree house sizes, the cost for each size and the prices for eachcleaning type and the surcharge for a more complete cleaning inyour comments as well.
In addition to the house cleaning service, we also offer yardservice. 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'sedges and the cost of shrub pruning depends upon the number ofshrubs. The program should begin by asking the customer whetherthey are requesting house cleaning or yard service. If the userinputs an invalid choice, the user should be re-prompted until avalid choice is entered. Depending upon the choice the programshould then prompt the user for the information needed to determinethe cost of the service. Seniors receive a 10% discount on bothservices by prompting the user to requesting the customer's age.The output of your program should be the cost of the requestedservice.
At a minimum, the program should have one function to calculatethe house cleaning cost, another to calculate the yard service costand a third to determine the discount. The program should includecomments for the major steps of your code. In addition, documentthe cost of square foot for mowing, the cost per linear foot foredging and the cost per shrub for pruning. Finally, you shoulddocument any constants involved in determining the seniordiscount.