program5_2.pyWrite a program that determines the cost of painting the walls of a windowless room. There is one door and it will be painted the same color as the walls. The problem requires a main function and two custom functions that are imported from a custom module that you create. In main, the program should prompt the user for five inputs shown in blue in the Sample Output below: the length, width, and height of the room in feet. the cost of one quart of the chosen paint. the square feet that can be covered by one quart of paint. The three dimensions of the room should then be used as arguments for a function that calculates and returns the area of the walls in square feet. This area and the remaining two inputs should be used as arguments for a second, void function that determines and prints the cost of the painting job. There will likely be paint left over. There is a method in the math module that you can use to "round up" the number of quarts needed.Sample OutputEnter the length of the room in feet 20Enter the width of the room in feet 16Enter the height of the walls in feet 9Enter the price of one pail of paint 24.99Enter the sq ft covered by one pail 100This job requires 7 pails of paintThe cost of paint is $174.93
program5_2.py
Write a
- the length, width, and height of the room in feet.
- the cost of one quart of the chosen paint.
- the square feet that can be covered by one quart of paint.
The three dimensions of the room should then be used as arguments for a function that calculates and returns the area of the walls in square feet. This area and the remaining two inputs should be used as arguments for a second, void function that determines and prints the cost of the painting job. There will likely be paint left over. There is a method in the math module that you can use to "round up" the number of quarts needed.
Sample Output
Enter the length of the room in feet 20
Enter the width of the room in feet 16
Enter the height of the walls in feet 9
Enter the price of one pail of paint 24.99
Enter the sq ft covered by one pail 100
This job requires 7 pails of paint
The cost of paint is $174.93
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 3 images