#Description: This program should calculate and display # the total monthly cost of home ownership. If the total payment # exceeds the monthy limit, display an appropriate message. # If the total payment does not exceed the monthly limit, display # an appropriate message. There are five bugs/errors in this program. #Setting variables MONTHLY_LIMIT = 1200.00 mortgage_Payment = float(input("Enter mortgage payment: ")) other_Payments = float(input("Enter combined utility, upkeep and taxes: ")) total = mortgage_Payment - other_Payments || if total > MONTHLY_LIMIT: print("Cost of ownership does not exceed the limit.") print("Cost of ownership exceeds the limit.") print("Total is " + str(total)) print("Limit is " + str(MONTHLY_LIMIT)) else:

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Can someone help me understand the errors in my code please? If you could explain it one by one I'd highly appreciate it. This is written in Python.

100 %
Error List
#Description: This program should calculate and display
# the total monthly cost of home ownership. If the total payment
# exceeds the monthy limit, display an appropriate message.
# If the total payment does not exceed the monthly limit, display
# an appropriate message. There are five bugs/errors in this program.
# Setting variables
MONTHLY_LIMIT = 1200.00
mortgage_Payment = float(input("Enter mortgage payment: "))
other_Payments = float(input("Enter combined utility, upkeep and taxes: "))
total = mortgage_Payment other_Payments
if total > MONTHLY_LIMIT:
print("Cost of ownership does not exceed the limit.")
print("Cost of ownership exceeds the limit.")
print("Total is " + str(total))
print("Limit is " + str(MONTHLY_LIMIT))
else:
× 8
Entire Solution
A 8
↑
↓
X 8 Errors
8 Warnings ✪ 0 Messages
Description
X Statements must be separated by newlines or semicolons
X Expected expression
X Expected expression
> Statements must be separated by newlines or semicolons
> Statements must be separated by newlines or semicolons
Error List Output
97
Build + IntelliSense
Transcribed Image Text:100 % Error List #Description: This program should calculate and display # the total monthly cost of home ownership. If the total payment # exceeds the monthy limit, display an appropriate message. # If the total payment does not exceed the monthly limit, display # an appropriate message. There are five bugs/errors in this program. # Setting variables MONTHLY_LIMIT = 1200.00 mortgage_Payment = float(input("Enter mortgage payment: ")) other_Payments = float(input("Enter combined utility, upkeep and taxes: ")) total = mortgage_Payment other_Payments if total > MONTHLY_LIMIT: print("Cost of ownership does not exceed the limit.") print("Cost of ownership exceeds the limit.") print("Total is " + str(total)) print("Limit is " + str(MONTHLY_LIMIT)) else: × 8 Entire Solution A 8 ↑ ↓ X 8 Errors 8 Warnings ✪ 0 Messages Description X Statements must be separated by newlines or semicolons X Expected expression X Expected expression > Statements must be separated by newlines or semicolons > Statements must be separated by newlines or semicolons Error List Output 97 Build + IntelliSense
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Why is it telling me I have errors and that mortagePayment, otherPayments isn't defined?

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Mathematical functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education