#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:

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter7: User-defined Simple Data Types, Namespaces, And The String Type
Section: Chapter Questions
Problem 7PE
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning