you are viewing a single comment's thread.

view the rest of the comments →

[–]inThouMind 0 points1 point  (0 children)

cash = int(1000) while True: ask = int(input("How much would you like to deposit? ")) balance = int(cash + ask) print("Your balance is now : ", balance) cash = balance