Warning! It seems that you are using Dodona within another webpage, so not everything may work properly. Let your teacher know so that he can solve the problem by adjusting a setting in the learning environment. In the meantime, you can click this link to open Dodona in a new window.
Warning! The page was not fully loaded, probably because of a network issue. It could be that not all functionalities work as expected. Please try reloading the page.
Save the change
Sign in to test your solution.
# 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))