Sichanov

ss

Feb 7th, 2021
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. command = input()
  2. total = 0
  3.  
  4. while command != "NoMoreMoney":
  5.     new_command = float(command)
  6.     print(f'Increase: {new_command:.2f}')
  7.     command = input()
  8.  
Advertisement
Add Comment
Please, Sign In to add comment