Advertisement
Lyubohd

05. Travelling

Jun 12th, 2021
643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. destination = input()
  2. while not destination == 'End':
  3.     target = float(input())
  4.     money_saved = 0.0
  5.     while money_saved < target:
  6.         current_money = float(input())
  7.         money_saved += current_money
  8.     print(f"Going to {destination}!")
  9.     destination = input()
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement