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,...


* I  should use format in my code.
* I should enter my inputs in the box in the 2nd pic!


Sites like Zillow get input about house prices from a database and provide nice summaries for readers. Write a program with two inputs,<br>current price and last month's price (both integers). Then, output a summary listing the price, the change since last month, and the<br>estimated monthly mortgage computed as (current_price * 0.051) / 12.<br>Output each floating-point value with two digits after the decimal point, which can be achieved as follows:<br>print('{:.2f}'.format(your_value))<br>Ex: If the input is:<br>200000<br>210000<br>the output is:<br>This house is $200000. The change is $-10000 since last month.<br>The estimated monthly mortgage is $850.00.<br>Note: Getting the precise spacing, punctuation, and newlines exactly right is a key point of this assignment. Such precision is an important<br>part of programming.<br>354684.2266598.qx3zqy7<br>

Extracted text: 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('{:.2f}'.format(your_value)) Ex: If the input is: 200000 210000 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. 354684.2266598.qx3zqy7
Run your prograr<br>Develop mode<br>Submit mode<br>input values in th<br>second box.<br>Enter program input (optional)<br>0000<br>Run program<br>Input (from above)<br>Program output displayed here<br>Signaturo o<br>

Extracted text: Run your prograr Develop mode Submit mode input values in th second box. Enter program input (optional) 0000 Run program Input (from above) Program output displayed here Signaturo o

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here