Question: In Python 3.15 LAB: Input and formatted output: House real estate summary Sites like Zillow get input about house prices from a database and provide

In Python
3.15 LAB: Input and formatted output: House real estate summary Sites like Zillow get input about house prices from a database and provide nice summaries for readers. Write a program with two inputs, current price and last month's price (both integers). Then, output a summary listing the price, the change since last month, and the estimated monthly mortgage computed as (current_price * 0.051 ) /12. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print( f{your_value:.2f}) Ex: If the input is: 200000210000 the output is: This house is $200000. The change is $10000 since last month. The estimated monthly mortgage is $850.00. Note: Getting the precise spacing, punctuation, and newlines exactly right is a key point of this assignment. Such precision is an important part of programming. 457904.3127488.q3zqy7 \begin{tabular}{l|l} LAB & 3.15.1: LAB: Input and formatted output: House real estate summary \\ ACTIVITY & 3.15. \end{tabular} 0/10 main.py Load default template... \( \begin{array}{ll}1 & \text { current_price }=\operatorname{int}(\text { input }()) \\ 2 & \text { last_months_price }=\operatorname{int}(\operatorname{input}()) \\ 3 & \\ 4 & \text { ' ' Type your code here. ' ' } \\ 5 & \mid\end{array} \)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
