Using Python, create a program that allows a real estate agent to enter the cost of homes in a given area into a list. The program should display the average cost of a home, the median cost, the lowest price, and the highest price. Operation: - The main() function should call functions to get the prices of the homes, sort the prices, and find the required statistics. You can use as many functions as you like but you must have at least 2, not counting main(). - The output should include a display of all prices entered. Specifications: - If the length of the list is an odd number, the median value is the value of the middle item in the list. -If the length of the list is an even number, the median value is the average of the two middle items in the list. The output should look as shown below: Real Estate Values Enter the cost of one home or -99 to quit: 139000 Enter the cost of one home or -99 to quit: 560000 Enter the cost of one home or -99 to quit: 249999 Enter the cost of one home or -99 to quit: 98000 Enter the cost of one home or -99 to quit: 159999 Enter the cost of one home or -99 to quit: -99 ****************************************************** Prices of homes in your area: [98000.0, 139000.0, 159999.0, 249999.0, 560000.0] ****************************************************** The median value is $ 159999.0 The average sale price is $ 241399.0 The minimum sale price is 98000.0 The maximum sale price is $ 560000.0
Using Python, create a
Operation:
- The main() function should call functions to get the prices of the homes, sort the prices, and find the required statistics. You can use as many functions as you like but you must have at least 2, not counting main().
- The output should include a display of all prices entered.
Specifications:
- If the length of the list is an odd number, the median value is the value of the middle item in the list.
-If the length of the list is an even number, the median value is the average of the two middle items in the list.
The output should look as shown below:
Real Estate Values
Enter the cost of one home or -99 to quit: 139000
Enter the cost of one home or -99 to quit: 560000
Enter the cost of one home or -99 to quit: 249999
Enter the cost of one home or -99 to quit: 98000
Enter the cost of one home or -99 to quit: 159999
Enter the cost of one home or -99 to quit: -99
******************************************************
Prices of homes in your area:
[98000.0, 139000.0, 159999.0, 249999.0, 560000.0]
******************************************************
The median value is $ 159999.0
The average sale price is $ 241399.0
The minimum sale price is 98000.0
The maximum sale price is $ 560000.0
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images