Advertisement
sanyakasarova

05. Account Balance

Jun 5th, 2021
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. account = 0.0
  2.  
  3. amount = input() # "50.56"
  4. while amount != "NoMoreMoney":
  5. amount = float(amount)
  6.  
  7. if amount < 0:
  8. print("Invalid operation!")
  9. break
  10.  
  11. account += amount
  12.  
  13. print(f"Increase: {amount:.2f}")
  14. amount = input()
  15.  
  16. print(f"Total: {account:.2f}")
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement