Created
February 6, 2017 09:43
-
-
Save BlueNexus/9f66fa912611e487295f899ef3f81a97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 = int(input("Lamborghini Tune-Ups: ")) | |
rent = int(input("Manhattan Apartment: ")) | |
jet = int(input("Private Jet Rental: ")) | |
gifts = int(input("Gifts: ")) | |
food = int(input("Dining Out: ")) | |
staff = int(input("Staff (butlers, chef, driver, assistant): ")) | |
guru = int(input("Personal Guru and Coach: ")) | |
games = int(input("Computer Games: ")) | |
total = car + rent + jet + gifts + food + staff + guru + games | |
print("\nGrand Total: " + str(total)) | |
input("\n\nPress the enter key to exit.") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment