Answer:
the logical error is in the statements taking input.
The monthly costs are taken using input function which returns the input as a string which cannot be added to total costs like this:
games = int(input("Computer Games: "))
Like this, every input string should be first converted to integer and then stored inside the variable.
PLEASE UPVOTE IF YOU FOUND THIS HELPFUL!
help # 3. The following program contains a logical error. Fix it. # Trust Fund Buddy...
The following program contains a logical error. Fix it. # Trust Fund Buddy - Bad # Demonstrates a logical error print( """ Trust Fund Buddy Totals your monthly spending so that your trust fund doesn't run out (and you're forced to get a real job). Please enter the requested, monthly costs. Since you're rich, ignore pennies and use only dollar amounts. """ ) car = input("Lamborghini Tune-Ups: ") rent = input("Manhattan Apartment: ") jet = input("Private Jet Rental: ") gifts...