Log in om je oplossingen te testen.
# Save the change program # ------------------------- # Subprograms # ------------------------- def nearest_pound(amount): return int(amount) + 1 def save_the_change(amount): if int(amount) != amount: savings = nearest_pound(amount) - amount else: savings = 1 return savings # ------------------------- # Main program # ------------------------- purchase_price = float(input("Enter the purchase price: £")) debit = nearest_pound(purchase_price) savings = save_the_change(purchase_price) print("Debit - £{0:.2f}".format(debit)) print("Credit to savings - £{0:.2f}".format(savings))

  Python sandbox

In dit venster kan je Python-code uitvoeren zonder iets te moeten installeren. De code die je hier schrijft wordt niet automatisch ingediend in Dodona.

Testgeval dat gedebugd wordt