Omvorming herhaling

Sign in to test your solution.
bedrag = float(input("Wat is het startbedrag?")) interest = float(input("Hoeveel interest krijgt Jos per trimester (3 maand)?")) for i in range(3, 37, 3): bedrag += bedrag * interest / 100 print("Na", i // 12, "jaar en", i % 12, "maand heeft Jos €", round(bedrag, 2), "op zijn rekening staan.")

  Python sandbox

This window allows you to run Python code without installing a thing. The code you write here is not automatically submitted to Dodona.

Test case being debugged