Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- GOAL = 1000000000
- INCREASE = 1000
- current_money = 0
- while current_money < GOAL:
- print(f"""
- $0 ${GOAL:,}
- v v
- |------------------------------------------------|
- """)
- indent = ' ' * int(current_money / (GOAL / 50))
- print(indent + '^')
- print(indent + '$' + f'{current_money:,}')
- input('Press Enter to add $' + f'{INCREASE:,}')
- current_money += INCREASE
- print('You have reached your wealth goal!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement